public interface Logger
| Modifier and Type | Method and Description |
|---|---|
void |
debug(String msg)
Logs a message at this level.
|
void |
debug(String msg,
Object... arg)
Logs a message at this level.
|
void |
debug(String msg,
Throwable t)
Logs a message at this level.
|
void |
error(String msg)
Logs a message at this level.
|
void |
error(String msg,
Object... arg)
Logs a message at this level.
|
void |
error(String msg,
Throwable t)
Logs a message at this level.
|
void |
info(String msg)
Logs a message at this level.
|
void |
info(String msg,
Object... arg)
Logs a message at this level.
|
void |
info(String msg,
Throwable t)
Logs a message at this level.
|
boolean |
isDebugEnabled() |
boolean |
isErrorEnabled() |
boolean |
isInfoEnabled() |
boolean |
isTraceEnabled() |
boolean |
isWarningEnabled() |
void |
trace(String msg) |
void |
trace(String msg,
Object... arg) |
void |
trace(String msg,
Throwable t) |
void |
warning(String msg) |
void |
warning(String msg,
Object... arg) |
void |
warning(String msg,
Throwable t) |
void debug(String msg)
msg - the message to logvoid debug(String msg, Object... arg)
msg - the message to logarg - formatting arguments for the messagevoid debug(String msg, Throwable t)
msg - the message to logt - the Throwable to logvoid error(String msg)
msg - the message to logvoid error(String msg, Object... arg)
msg - the message to logarg - formatting arguments for the message formatting arguments for the messagevoid error(String msg, Throwable t)
msg - the message to logt - the Throwable to logvoid info(String msg)
msg - the message to logvoid info(String msg, Object... arg)
msg - the message to logarg - formatting arguments for the messagevoid info(String msg, Throwable t)
msg - the message to logt - the Throwable to log the Throwable to logboolean isDebugEnabled()
boolean isErrorEnabled()
boolean isInfoEnabled()
boolean isTraceEnabled()
boolean isWarningEnabled()
void trace(String msg)
msg - the message to logvoid trace(String msg, Object... arg)
msg - the message to logarg - formatting arguments for the messagevoid trace(String msg, Throwable t)
msg - the message to logt - the Throwable to logvoid warning(String msg)
msg - the message to logvoid warning(String msg, Object... arg)
msg - the message to logarg - formatting arguments for the message