public class DefaultAndroidCustomLogger extends java.lang.Object implements CustomLogger
Constructor and Description |
---|
DefaultAndroidCustomLogger() |
Modifier and Type | Method and Description |
---|---|
void |
debug(java.lang.String msg)
Used to log detailed information.
|
void |
error(java.lang.Exception e)
Used to log runtime errors or unexpected conditions.
|
void |
error(java.lang.String msg)
Used to log runtime errors or unexpected conditions.
|
void |
info(java.lang.String msg)
Used to log information on the flow through the system and other interesting events.
|
void |
verbose(java.lang.String msg)
Used to log detailed information.
|
void |
warn(java.lang.String msg)
Used in situations like use of deprecated APIs, poor use of API, near errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong".
|
public void verbose(java.lang.String msg)
CustomLogger
verbose
in interface CustomLogger
msg
- the message to logpublic void debug(java.lang.String msg)
CustomLogger
debug
in interface CustomLogger
msg
- the message to logpublic void info(java.lang.String msg)
CustomLogger
info
in interface CustomLogger
msg
- the message to logpublic void warn(java.lang.String msg)
CustomLogger
warn
in interface CustomLogger
msg
- the message to logpublic void error(java.lang.String msg)
CustomLogger
error
in interface CustomLogger
msg
- the message to logpublic void error(java.lang.Exception e)
CustomLogger
error
in interface CustomLogger
e
- the exception that was thrown that caused the error.