org.slf4j |
Core logging interfaces.
|
Java Source File Name | Type | Comment |
BasicMarkerTest.java | Class | |
ILoggerFactory.java | Interface | ILoggerFactory instances manufacture
Logger instances by name.
Most users retrieve
Logger instances through the static
LoggerFactory.getLogger(String) method. |
IMarkerFactory.java | Interface | Implementaitons of this interface are used to manufacture
Marker instances. |
InvocationTest.java | Class | Test whether invoking the SLF4J API causes problems or not. |
Logger.java | Interface | The main user interface to logging. |
LoggerFactory.java | Class | The LoggerFactory is a utility class producing Loggers for
various logging APIs, most notably for log4j, logback and JDK 1.4 logging. |
Marker.java | Interface | Markers are named objects used to enrich log statements. |
MarkerFactory.java | Class | MarkerFactory is a utility class producing
Marker instances as
appropriate for the logging system currently in use. |
MDC.java | Class | This class hides and serves as a substitute for the underlying logging
system's MDC implementation.
If the underlying logging system offers MDC functionality, then SLF4J's MDC,
i.e. |
NoBindingTest.java | Class | |