It's not an issue. Please try android's setprop.
You can use the following command to change the logging level on android by tag. adb shell setprop log.tag.$tag $level
tag: (<=23 length String) Android logger: Log.d(String, ...) Slf4j: LoggerFactory.getLogger(String) lombok: @Slf4j(topic = "String")
prefer not to use LoggerFactory.getLogger(Class) ... to avoid name mangling.
|