public interface Logger
| Modifier and Type | Method and Description |
|---|---|
void |
debug(String msg)
Log a message at the DEBUG level.
|
void |
debug(String msg,
Throwable t)
Log an exception (
Throwable) at the DEBUG level with an accompanying message. |
void |
error(String msg)
Log a message at the ERROR level.
|
void |
error(String msg,
Throwable t)
Log an exception (
Throwable) at the ERROR level with an accompanying message. |
void |
fatal(String msg)
Log a message at the WARN level.
|
void |
fatal(String msg,
Throwable t)
Log an exception (
Throwable) at the WARN level with an accompanying message. |
void |
info(String msg)
Log a message at the INFO level.
|
void |
info(String msg,
Throwable t)
Log an exception (
Throwable) at the INFO level with an accompanying message. |
boolean |
isDebugEnabled()
Is the logger instance enabled for the DEBUG level?
|
boolean |
isErrorEnabled()
Is the logger instance enabled for the ERROR level?
|
boolean |
isFatalEnabled()
Is the logger instance enabled for the FATAL level?
|
boolean |
isInfoEnabled()
Is the logger instance enabled for the INFO level?
|
boolean |
isWarnEnabled()
Is the logger instance enabled for the WARN level?
|
void |
warn(String msg)
Log a message at the WARN level.
|
void |
warn(String msg,
Throwable t)
Log an exception (
Throwable) at the WARN level with an accompanying message. |
void debug(String msg)
msg - the message string to be loggedvoid debug(String msg, Throwable t)
Throwable) at the DEBUG level with an accompanying message.msg - the message accompanying the exception.t - the exception (Throwable) to log.void info(String msg)
msg - the message string to be loggedvoid info(String msg, Throwable t)
Throwable) at the INFO level with an accompanying message.msg - the message accompanying the exceptiont - the exception (Throwable) to logvoid warn(String msg)
msg - the message string to be loggedvoid warn(String msg, Throwable t)
Throwable) at the WARN level with an accompanying message.msg - the message accompanying the exceptiont - the exception (Throwable) to logvoid fatal(String msg)
msg - the message string to be loggedvoid fatal(String msg, Throwable t)
Throwable) at the WARN level with an accompanying message.msg - the message accompanying the exceptiont - the exception (Throwable) to logvoid error(String msg)
msg - the message string to be loggedvoid error(String msg, Throwable t)
Throwable) at the ERROR level with an accompanying message.msg - the message accompanying the exceptiont - the exception (Throwable) to logboolean isDebugEnabled()
boolean isInfoEnabled()
boolean isWarnEnabled()
boolean isFatalEnabled()
boolean isErrorEnabled()
Copyright © 2015. All rights reserved.