public interface ConsoleLogger
String or Throwable, etc.| Modifier and Type | Method and Description |
|---|---|
void |
debug(String message) |
void |
error(String message) |
void |
error(String message,
Throwable t)
Simply delegates to
error( toString( t, message ) ). |
void |
error(Throwable t)
Simply delegates to method
error(null, Throwable). |
void |
info(String message) |
boolean |
isDebugEnabled() |
boolean |
isErrorEnabled() |
boolean |
isInfoEnabled() |
boolean |
isWarnEnabled() |
void |
warning(String message) |
boolean isDebugEnabled()
void debug(String message)
boolean isInfoEnabled()
void info(String message)
boolean isWarnEnabled()
void warning(String message)
boolean isErrorEnabled()
void error(String message)
message - message to logvoid error(String message, Throwable t)
error( toString( t, message ) ).message - message to logt - exception, message and trace to logvoid error(Throwable t)
error(null, Throwable).t - exception, message and trace to logCopyright © 2004–2019 The Apache Software Foundation. All rights reserved.