org.apache.commons.logging.impl |
SLF4J based implementation of commons-logging wrapper APIs.
|
Java Source File Name | Type | Comment |
NoOpLog.java | Class | Trivial implementation of Log that throws away all messages. |
SerializationTest.java | Class | |
SimpleLog.java | Class | Simple implementation of Log that sends all enabled log messages,
for all defined loggers, to System.err. |
SLF4JLocationAwareLog.java | Class | Implementation of
Log org.apache.commons.logging.Log interface which
delegates all processing to a wrapped
Logger org.slf4j.Logger instance.
JCL's FATAL level is mapped to ERROR. |
SLF4JLog.java | Class | Implementation of
Log org.apache.commons.logging.Log interface which
delegates all processing to a wrapped
Logger org.slf4j.Logger instance.
JCL's FATAL and TRACE levels are mapped to ERROR and DEBUG respectively. |
SLF4JLogFactory.java | Class |
Concrete subclass of
LogFactory which always delegates to the
LoggerFactory org.slf4j.LoggerFactory class.
This factory generates instances of
SLF4JLog . |