Uses of Interface
org.slf4j.Logger
-
Packages that use Logger Package Description org.apache.commons.logging.impl SLF4J based implementation of commons-logging wrapper APIs.org.slf4j Core logging interfaces.org.slf4j.bridge Bridge/route all JUL log records to the SLF4J API.org.slf4j.event org.slf4j.helpers Helper classes.org.slf4j.impl Implementations of core logging interfaces defined in theorg.slf4jpackage.org.slf4j.spi Classes and interfaces which are internal to SLF4J. -
-
Uses of Logger in org.apache.commons.logging.impl
Fields in org.apache.commons.logging.impl declared as Logger Modifier and Type Field Description private LoggerSLF4JLog. loggerConstructors in org.apache.commons.logging.impl with parameters of type Logger Constructor Description SLF4JLog(Logger logger) -
Uses of Logger in org.slf4j
Methods in org.slf4j that return Logger Modifier and Type Method Description LoggerILoggerFactory. getLogger(java.lang.String name)Return an appropriateLoggerinstance as specified by thenameparameter.static LoggerLoggerFactory. getLogger(java.lang.Class<?> clazz)Return a logger named corresponding to the class passed as parameter, using the statically boundILoggerFactoryinstance.static LoggerLoggerFactory. getLogger(java.lang.String name)Return a logger named according to the name parameter using the statically boundILoggerFactoryinstance. -
Uses of Logger in org.slf4j.bridge
Methods in org.slf4j.bridge that return Logger Modifier and Type Method Description protected LoggerSLF4JBridgeHandler. getSLF4JLogger(java.util.logging.LogRecord record)Return the Logger instance that will be used for logging.Methods in org.slf4j.bridge with parameters of type Logger Modifier and Type Method Description protected voidSLF4JBridgeHandler. callPlainSLF4JLogger(Logger slf4jLogger, java.util.logging.LogRecord record) -
Uses of Logger in org.slf4j.event
Classes in org.slf4j.event that implement Logger Modifier and Type Class Description classEventRecodingLoggerThis class is used to record events during the initialization phase of the underlying logging framework. -
Uses of Logger in org.slf4j.helpers
Classes in org.slf4j.helpers that implement Logger Modifier and Type Class Description classMarkerIgnoringBaseThis class serves as base for adapters or native implementations of logging systems lacking Marker support.(package private) classNamedLoggerBaseServes as base class for named logger implementation.classNOPLoggerA direct NOP (no operation) implementation ofLogger.classSubstituteLoggerA logger implementation which logs via a delegate logger.Fields in org.slf4j.helpers declared as Logger Modifier and Type Field Description private LoggerSubstituteLogger. _delegateMethods in org.slf4j.helpers that return Logger Modifier and Type Method Description (package private) LoggerSubstituteLogger. delegate()Return the delegate logger instance if set.private LoggerSubstituteLogger. getEventRecordingLogger()LoggerNOPLoggerFactory. getLogger(java.lang.String name)LoggerSubstituteLoggerFactory. getLogger(java.lang.String name)Methods in org.slf4j.helpers with parameters of type Logger Modifier and Type Method Description voidSubstituteLogger. setDelegate(Logger delegate)Typically called after theLoggerFactoryinitialization phase is completed. -
Uses of Logger in org.slf4j.impl
Classes in org.slf4j.impl that implement Logger Modifier and Type Class Description classJCLLoggerAdapterA wrapper overorg.apache.commons.logging.Login conformance with theLoggerinterface.classJDK14LoggerAdapterA wrapper overjava.util.logging.Loggerin conformity with theLoggerinterface.classSimpleLoggerSimple implementation ofLoggerthat sends all enabled log messages, for all defined loggers, to the console (System.err).Fields in org.slf4j.impl with type parameters of type Logger Modifier and Type Field Description (package private) java.util.concurrent.ConcurrentMap<java.lang.String,Logger>JCLLoggerFactory. loggerMap(package private) java.util.concurrent.ConcurrentMap<java.lang.String,Logger>JDK14LoggerFactory. loggerMap(package private) java.util.concurrent.ConcurrentMap<java.lang.String,Logger>SimpleLoggerFactory. loggerMapMethods in org.slf4j.impl that return Logger Modifier and Type Method Description LoggerJCLLoggerFactory. getLogger(java.lang.String name)LoggerJDK14LoggerFactory. getLogger(java.lang.String name)LoggerSimpleLoggerFactory. getLogger(java.lang.String name)Return an appropriateSimpleLoggerinstance by name. -
Uses of Logger in org.slf4j.spi
Subinterfaces of Logger in org.slf4j.spi Modifier and Type Interface Description interfaceLocationAwareLoggerAn optional interface helping integration with logging systems capable of extracting location information.
-