|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.logging.impl.SLF4JLocationAwareLog
public class SLF4JLocationAwareLog
Implementation of org.apache.commons.logging.Log
interface which
delegates all processing to a wrapped org.slf4j.Logger
instance.
JCL's FATAL level is mapped to ERROR. All other levels map one to one.
Field Summary | |
---|---|
protected String |
name
|
Method Summary | |
---|---|
void |
debug(Object message)
Converts the input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
void |
debug(Object message,
Throwable t)
Converts the first input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
void |
error(Object message)
Converts the input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
void |
error(Object message,
Throwable t)
Converts the first input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
void |
fatal(Object message)
Converts the input parameter to String and then delegates to the error method of the wrapped org.slf4j.Logger instance. |
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. |
void |
info(Object message)
Converts the input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
void |
info(Object message,
Throwable t)
Converts the first input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
boolean |
isDebugEnabled()
Directly delegates to the wrapped org.slf4j.Logger instance. |
boolean |
isErrorEnabled()
Directly delegates to the wrapped org.slf4j.Logger instance. |
boolean |
isFatalEnabled()
Delegates to the isErrorEnabled |
boolean |
isInfoEnabled()
Directly delegates to the wrapped org.slf4j.Logger instance. |
boolean |
isTraceEnabled()
Delegates to the isTraceEnabled |
boolean |
isWarnEnabled()
Directly delegates to the wrapped org.slf4j.Logger instance. |
protected Object |
readResolve()
Replace this instance with a homonymous (same name) logger returned by LoggerFactory. |
void |
trace(Object message)
Converts the input parameter to String and then delegates to the debug method of the wrapped org.slf4j.Logger instance. |
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. |
void |
warn(Object message)
Converts the input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
void |
warn(Object message,
Throwable t)
Converts the first input parameter to String and then delegates to the wrapped org.slf4j.Logger instance. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected String name
Method Detail |
---|
public boolean isTraceEnabled()
isTraceEnabled method of the wrapped
org.slf4j.Logger
instance.
- Specified by:
isTraceEnabled
in interface Log
public boolean isDebugEnabled()
org.slf4j.Logger
instance.
isDebugEnabled
in interface Log
public boolean isInfoEnabled()
org.slf4j.Logger
instance.
isInfoEnabled
in interface Log
public boolean isWarnEnabled()
org.slf4j.Logger
instance.
isWarnEnabled
in interface Log
public boolean isErrorEnabled()
org.slf4j.Logger
instance.
isErrorEnabled
in interface Log
public boolean isFatalEnabled()
isErrorEnabled method of the wrapped
org.slf4j.Logger
instance.
- Specified by:
isFatalEnabled
in interface Log
public void trace(Object message)
org.slf4j.Logger
instance.
trace
in interface Log
message
- the message to log. Converted to String
public void trace(Object message, Throwable t)
org.slf4j.Logger
instance.
trace
in interface Log
message
- the message to log. Converted to String
t
- the exception to logpublic void debug(Object message)
org.slf4j.Logger
instance.
debug
in interface Log
message
- the message to log. Converted to String
public void debug(Object message, Throwable t)
org.slf4j.Logger
instance.
debug
in interface Log
message
- the message to log. Converted to String
t
- the exception to logpublic void info(Object message)
org.slf4j.Logger
instance.
info
in interface Log
message
- the message to log. Converted to String
public void info(Object message, Throwable t)
org.slf4j.Logger
instance.
info
in interface Log
message
- the message to log. Converted to String
t
- the exception to logpublic void warn(Object message)
org.slf4j.Logger
instance.
warn
in interface Log
message
- the message to log. Converted to String
public void warn(Object message, Throwable t)
org.slf4j.Logger
instance.
warn
in interface Log
message
- the message to log. Converted to String
t
- the exception to logpublic void error(Object message)
org.slf4j.Logger
instance.
error
in interface Log
message
- the message to log. Converted to String
public void error(Object message, Throwable t)
org.slf4j.Logger
instance.
error
in interface Log
message
- the message to log. Converted to String
t
- the exception to logpublic void fatal(Object message)
org.slf4j.Logger
instance.
fatal
in interface Log
message
- the message to log. Converted to String
public void fatal(Object message, Throwable t)
org.slf4j.Logger
instance.
fatal
in interface Log
message
- the message to log. Converted to String
t
- the exception to logprotected Object readResolve() throws ObjectStreamException
ObjectStreamException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |