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
This simplifies the `isDebugBuild` check used to strip logging from minified bundles in two ways:
- It makes the return value independent of the value of `__SENTRY_BROWSER_BUNDLE__`, since we want to be able to have debug and non-debug browser bundles.
- It switches the variable on which it's based from one preventing debug logging which defaults to being unset to one enabling debug logging which defaults to being true. The effect is the same, but eliminating the double negative makes the intention clearer.
0 commit comments