Method Summary |
|
public void | debug(Object message) Log a debug message. |
public void | debug(Object message, Throwable t) Log a debug message and accompanying Throwable. |
public void | error(Object message) Log an error message. |
public void | error(Object message, Throwable t) Log an error message and accompanying Throwable. |
protected LogChute | getLogChute() Returns the LogChute wrapped by this Log instance. |
public void | info(Object message) Log an info message. |
public void | info(Object message, Throwable t) Log an info message and accompanying Throwable. |
public boolean | isDebugEnabled() Returns true if debug level messages will be printed by the LogChute. |
public boolean | isErrorEnabled() Returns true if error level messages will be printed by the LogChute. |
public boolean | isInfoEnabled() Returns true if info level messages will be printed by the LogChute. |
public boolean | isTraceEnabled() Returns true if trace level messages will be printed by the LogChute. |
public boolean | isWarnEnabled() Returns true if warn level messages will be printed by the LogChute. |
protected void | log(int level, Object message) |
protected void | log(int level, Object message, Throwable t) |
protected void | setLogChute(LogChute chute) Updates the LogChute wrapped by this Log instance. |
public void | trace(Object message) Log a trace message. |
public void | trace(Object message, Throwable t) Log a trace message and accompanying Throwable. |
public void | warn(Object message) Log a warning message. |
public void | warn(Object message, Throwable t) Log a warning message and accompanying Throwable. |