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.apache.log4j An rather minimal but sufficient implementation redirecting all calls to a log4j logger to a logback logger.org.slf4j Core logging interfaces.org.slf4j.bridge Bridge/route all JUL log records to the SLF4J API.org.slf4j.cal10n SLF4J API extensionsorg.slf4j.event org.slf4j.ext Localized logging using the CAL10N API.org.slf4j.helpers Helper classes.org.slf4j.impl Implementations of core logging interfaces defined in theorg.slf4jpackage.org.slf4j.profiler Poor man's profiler APIorg.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.apache.log4j
Fields in org.apache.log4j declared as Logger Modifier and Type Field Description protected LoggerCategory. slf4jLogger -
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.cal10n
Classes in org.slf4j.cal10n that implement Logger Modifier and Type Class Description classLocLoggerA logger specialized in localized logging.Constructors in org.slf4j.cal10n with parameters of type Logger Constructor Description LocLogger(Logger logger, ch.qos.cal10n.IMessageConveyor imc) -
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.ext
Classes in org.slf4j.ext that implement Logger Modifier and Type Class Description classLoggerWrapperA helper class wrapping anLoggerinstance preserving location information if the wrapped instance supports it.classXLoggerA utility that provides standard mechanisms for logging certain kinds of activities.Fields in org.slf4j.ext declared as Logger Modifier and Type Field Description protected LoggerLoggerWrapper. loggerConstructors in org.slf4j.ext with parameters of type Logger Constructor Description LoggerWrapper(Logger logger, java.lang.String fqcn)XLogger(Logger logger)Given an underlying logger, construct an XLogger -
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.profiler
Fields in org.slf4j.profiler declared as Logger Modifier and Type Field Description (package private) LoggerProfiler. loggerMethods in org.slf4j.profiler that return Logger Modifier and Type Method Description LoggerProfiler. getLogger()Methods in org.slf4j.profiler with parameters of type Logger Modifier and Type Method Description voidProfiler. setLogger(Logger logger) -
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.
-