-
-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting duplicate events/issues for almost every error #4407
Comments
Thank you for reporting @melyux 🙇
Which versions of Sentry react-native SDK are you using? Are you experiencing this after an upgrade? Could you also provide the following information to help us track down the issue?
|
We're on Expo SDK v52.0.20 and RN v0.76.5. Here's our Sentry.init(): Sentry.init({
environment: Constants.expoConfig?.extra?.EXPO_PUBLIC_APP_VARIANT,
dsn: Constants.expoConfig?.extra?.EXPO_PUBLIC_SENTRY_DSN,
integrations: [
captureConsoleIntegration({ levels: ['error'] }),
Sentry.mobileReplayIntegration({
maskAllText: false,
maskAllImages: false,
maskAllVectors: false,
}),
],
_experiments: {
replaysSessionSampleRate: 0.1, // 10% of user sessions are recorded
replaysOnErrorSampleRate: 1.0, // 100% of user errors are recorded
},
attachStacktrace: true, // Enable to to attach stack traces with the console messages too
ignoreErrors: [
'Firebase: Error (auth/network-request-failed).',
'RemoteServiceException$CannotDeliverBroadcastException',
'currentScopes.withScope$argument_0', // Duplicate errors to Sentry for some reason
],
}) Added the last |
Thank you for the added information @melyux 🙇 Which versions of Sentry react-native SDK are you using? |
We're on |
For almost every Expo app error, I get the same error reported to Sentry twice.
This wasn't happening until recently. I do have
captureConsoleIntegration({ levels: ['error'] }),
on, but I'm not doing any manualconsole.error()
calls where the errors occur.Any clue why?
The text was updated successfully, but these errors were encountered: