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
You can configure the minLevel for filtering such as error during SDK init.
debugConfig {
enabled: false,
minLevel: error
}
We'd call Log.log('DiskBufferingConfiguration', ErrorLevel.Error, 'The error is: %s', error) and this will call Logcat internally.
If enabled is enabled and if ErrorLevel is >= minLevel, we'd call logcat, otherwise not.
This most likely has to live in the OTel Java SDK (core) since many Log calls would live there.
The text was updated successfully, but these errors were encountered:
Re #664 (comment)
Relates to #597
Eg:
Log(tag, level, message, args)
You can configure the
minLevel
for filtering such aserror
during SDK init.We'd call Log.log('DiskBufferingConfiguration', ErrorLevel.Error, 'The error is: %s', error) and this will call
Logcat
internally.If
enabled
is enabled and ifErrorLevel
is >=minLevel
, we'd call logcat, otherwise not.This most likely has to live in the OTel Java SDK (core) since many Log calls would live there.
The text was updated successfully, but these errors were encountered: