Method Summary |
|
public void | debug(Object message)
Log a message with debug log level. |
public void | debug(Object message, Throwable t)
Log an error with debug log level. |
public void | error(Object message)
Log a message with error log level. |
public void | error(Object message, Throwable t)
Log an error with error log level. |
public void | fatal(Object message)
Log a message with fatal log level. |
public void | fatal(Object message, Throwable t)
Log an error with fatal log level. |
public void | info(Object message)
Log a message with info log level. |
public void | info(Object message, Throwable t)
Log an error with info log level. |
public boolean | isDebugEnabled()
Is debug logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
String concatination) when the log level is more than debug. |
public boolean | isErrorEnabled()
Is error logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
String concatination) when the log level is more than error. |
public boolean | isFatalEnabled()
Is fatal logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
String concatination) when the log level is more than fatal. |
public boolean | isInfoEnabled()
Is info logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
String concatination) when the log level is more than info. |
public boolean | isTraceEnabled()
Is trace logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
String concatination) when the log level is more than trace. |
public boolean | isWarnEnabled()
Is warning logging currently enabled?
Call this method to prevent having to perform expensive operations (for example,
String concatination) when the log level is more than warning. |
public void | trace(Object message)
Log a message with trace log level. |
public void | trace(Object message, Throwable t)
Log an error with trace log level. |
public void | warn(Object message)
Log a message with warn log level. |
public void | warn(Object message, Throwable t)
Log an error with warn log level. |