Method Summary |
|
public void | debug(Object message) Converts the input parameter to String and then delegates to the wrapped
org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | debug(Object message, Throwable t) Converts the first input parameter to String and then delegates to
the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | error(Object message) Converts the input parameter to String and then delegates to the wrapped
org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | error(Object message, Throwable t) Converts the first input parameter to String and then delegates to
the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | fatal(Object message) Converts the input parameter to String and then delegates to
the error method of the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | fatal(Object message, Throwable t) Converts the first input parameter to String and then delegates to
the error method of the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | info(Object message) Converts the input parameter to String and then delegates to the wrapped
org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | info(Object message, Throwable t) Converts the first input parameter to String and then delegates to
the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public boolean | isDebugEnabled() Directly delegates to the wrapped org.slf4j.Logger instance. |
public boolean | isErrorEnabled() Directly delegates to the wrapped org.slf4j.Logger instance. |
public boolean | isFatalEnabled() Delegates to the isErrorEnabled method of the wrapped
org.slf4j.Logger instance. |
public boolean | isInfoEnabled() Directly delegates to the wrapped org.slf4j.Logger instance. |
public boolean | isTraceEnabled() Delegates to the isTraceEnabled method of the wrapped
org.slf4j.Logger instance. |
public boolean | isWarnEnabled() Directly delegates to the wrapped org.slf4j.Logger instance. |
public void | trace(Object message) Converts the input parameter to String and then delegates to
the debug method of the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | trace(Object message, Throwable t) Converts the first input parameter to String and then delegates to
the debug method of the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | warn(Object message) Converts the input parameter to String and then delegates to the wrapped
org.slf4j.Logger instance.
Parameters: message - the message to log. |
public void | warn(Object message, Throwable t) Converts the first input parameter to String and then delegates to
the wrapped org.slf4j.Logger instance.
Parameters: message - the message to log. |