public interface LogCatcher
Modifier and Type | Method and Description |
---|---|
void |
log(LogLevel logLevel,
String message)
Called each time a log happen.
It is called only for
LogLevel the instance is registered
for.
Don't do long operation inside this method. |
void log(LogLevel logLevel, String message)
LogLevel
the instance is registered
for.
Don't do long operation inside this method. It may called from JNI C
side, and it is not a good idea to block it for long time. The system may
crash.logLevel
- Log levelmessage
- Log messageCopyright © 2020. All rights reserved.