Uses of Interface
org.slf4j.Logger
-
Packages that use Logger Package Description org.slf4j org.slf4j.event org.slf4j.helpers org.slf4j.impl org.slf4j.spi -
-
Uses of Logger in org.slf4j
Methods in org.slf4j that return Logger Modifier and Type Method Description Logger
ILoggerFactory. getLogger(java.lang.String name)
Return an appropriateLogger
instance as specified by thename
parameter.static Logger
LoggerFactory. getLogger(java.lang.Class<?> clazz)
Return a logger named corresponding to the class passed as parameter, using the statically boundILoggerFactory
instance.static Logger
LoggerFactory. getLogger(java.lang.String name)
Return a logger named according to the name parameter using the statically boundILoggerFactory
instance. -
Uses of Logger in org.slf4j.event
Classes in org.slf4j.event that implement Logger Modifier and Type Class Description class
EventRecodingLogger
-
Uses of Logger in org.slf4j.helpers
Classes in org.slf4j.helpers that implement Logger Modifier and Type Class Description class
MarkerIgnoringBase
This class serves as base for adapters or native implementations of logging systems lacking Marker support.class
NOPLogger
A direct NOP (no operation) implementation ofLogger
.class
SubstituteLogger
A logger implementation which logs via a delegate logger.Methods in org.slf4j.helpers that return Logger Modifier and Type Method Description Logger
NOPLoggerFactory. getLogger(java.lang.String name)
Logger
SubstituteLoggerFactory. getLogger(java.lang.String name)
Methods in org.slf4j.helpers with parameters of type Logger Modifier and Type Method Description void
SubstituteLogger. setDelegate(Logger delegate)
Typically called after theLoggerFactory
initialization phase is completed. -
Uses of Logger in org.slf4j.impl
Classes in org.slf4j.impl that implement Logger Modifier and Type Class Description class
JDK14LoggerAdapter
A wrapper overjava.util.logging.Logger
in conformity with theLogger
interface.Methods in org.slf4j.impl that return Logger Modifier and Type Method Description Logger
JDK14LoggerFactory. getLogger(java.lang.String name)
-
Uses of Logger in org.slf4j.spi
Subinterfaces of Logger in org.slf4j.spi Modifier and Type Interface Description interface
LocationAwareLogger
An optional interface helping integration with logging systems capable of extracting location information.
-