You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've implement React Rollbar according to the documentation and the error logs are reaching the dashboard as expected:
import{ProviderasErrorProvider}from'@rollbar/react';exportconstrollbarConfig={accessToken: import.meta.env.VITE_ROLLBAR_ACCESS_TOKEN,environment: 'development',captureUncaught: true,captureUnhandledRejections: true,};// and in the component render wrapping the root app element with...<ErrorProviderconfig={rollbarConfig}><App/></ErrorProvider>
The issue is the stack of every console.log in the app now shows it originated at telemetry.js line 518:
day -> 1 telemetry.js:518
Is there a flag to disable this behaviour to see the original source line while developing.
Changing the environment field in the configuration to development did NOT work.
The text was updated successfully, but these errors were encountered:
I've implement React Rollbar according to the documentation and the error logs are reaching the dashboard as expected:
The issue is the stack of every
console.log
in the app now shows it originated attelemetry.js
line 518:Is there a flag to disable this behaviour to see the original source line while developing.
Changing the environment field in the configuration to
development
did NOT work.The text was updated successfully, but these errors were encountered: