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
First of all, thanks for making a great open source error reporting tool!
In our app, we want to give users the possibility to disable all error reporting. Currently, this doesn't seem to be possible with react-native-sentry. For Javascript, raven-js does have the option to call uninstall to disable error reporting, and in the Go implementation I can set the DSN to an empty string to do the same thing.
Could disabling error reporting become a supported feature of the react-native-sentry client?
The text was updated successfully, but these errors were encountered:
So "uninstalling" is not an easy task, there are many things that hook into the process so it's rather complex.
I would still give your users the possibility to disable it but only take effect after they restart they app. You can store the value, check it on startup and just don't call install() then.
An easier option that might work for react-native-sentry is to support updating the DSN after having called install. In that way error reporting to a remote server is disabled, without having to unhook all that complicated stuff, and without having to restart the app.
First of all, thanks for making a great open source error reporting tool!
In our app, we want to give users the possibility to disable all error reporting. Currently, this doesn't seem to be possible with
react-native-sentry
. For Javascript,raven-js
does have the option to calluninstall
to disable error reporting, and in the Go implementation I can set the DSN to an empty string to do the same thing.Could disabling error reporting become a supported feature of the
react-native-sentry
client?The text was updated successfully, but these errors were encountered: