(msg: string)
| 27 | let mainDebugImages: Record<string, string> = {}; |
| 28 | |
| 29 | function log(msg: string): void { |
| 30 | if (options.debug) { |
| 31 | // eslint-disable-next-line no-console |
| 32 | console.log(`[ANR Worker] ${msg}`); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | const url = getEnvelopeEndpointWithUrlEncodedAuth(options.dsn, options.tunnel, options.sdkMetadata.sdk); |
| 37 | const transport = makeNodeTransport({ |
no test coverage detected