public interface Logger
Modifier and Type | Interface and Description |
---|---|
static class |
Logger.LEVEL
Constants for log levels.
|
Modifier and Type | Method and Description |
---|---|
void |
logDebug(Logger.LEVEL level,
java.lang.String message)
Logs the provided message in the debug log.
|
void |
logError(java.lang.String message)
Logs the provided message in the error log.
|
void logError(java.lang.String message)
message
- the message to log in the error log.void logDebug(Logger.LEVEL level, java.lang.String message)
message
- the message to log in the debug log.level
- the log level for the message.