Replies: 1 comment 2 replies
-
Hi @hraj6056 As far as I can see |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my project i am using loglevel as console logger but console logs are not getting captured i have this initialize code
export const coreInit = (): Faro => { return initializeFaro({ transports: [ new FetchTransport({ url: config.faro.url, apiKey: config.faro.apiKey, bufferSize: 1000, concurrency: 5, defaultRateLimitBackoffMs: 1000, }), ], app: { name: 'Frontend', version: VERSION, environment: env.getEnvironment(), }, instrumentations: [ ...getWebInstrumentations({ captureConsole: true, captureConsoleDisabledLevels: [], }), new TracingInstrumentation(), ], metas: [pageMeta, browserMeta], beforeSend: (item: TransportItem) => { delete item.meta.sdk; return item; }, }); };
Beta Was this translation helpful? Give feedback.
All reactions