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
Sentry RN has quite verbose logs, we should only consider this together with changing the default log level from debug to error or something similar not as verbose as debug.
We also need to consider the way Sentry JS uses log levels, as a significant amount of logs is coming from it.
The flag should be propagated to the native SDKs.
The text was updated successfully, but these errors were encountered:
@krystofwoldrich Detecting when we are running on a debug build surely is a todo task. Diagnostic Level is missing from Sentry JavaScript for filtering the logs, but it is available on the Native SDKs.
We can set it to error on the native SDKs but it will have no impact on the JS SDK.
Do you think this is enough for this task? For the JS Logs, it requires changes to the JavaScript SDK. I can make the change but it mostly likely will only be merged on V9.
options.debug = true
if we can reliably detect that the app runs in a debug build team-mobile#201Sentry RN has quite verbose logs, we should only consider this together with changing the default log level from
debug
toerror
or something similar not as verbose asdebug
.We also need to consider the way Sentry JS uses log levels, as a significant amount of logs is coming from it.
The flag should be propagated to the native SDKs.
The text was updated successfully, but these errors were encountered: