Package | Description |
---|---|
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.helpers |
Helper classes.
|
org.slf4j.impl |
Implementations of core logging interfaces defined in the
org.slf4j package. |
org.slf4j.spi |
Classes and interfaces which are internal to SLF4J.
|
Modifier and Type | Field and Description |
---|---|
protected Logger |
Category.slf4jLogger |
Modifier and Type | Method and Description |
---|---|
static Logger |
LoggerFactory.getLogger(Class clazz)
Return a logger named corresponding to the class passed as parameter, using
the statically bound
ILoggerFactory instance. |
Logger |
ILoggerFactory.getLogger(String name)
Return an appropriate
Logger instance as specified by the
name parameter. |
static Logger |
LoggerFactory.getLogger(String name)
Return a logger named according to the name parameter using the statically
bound
ILoggerFactory instance. |
Modifier and Type | Method and Description |
---|---|
protected Logger |
SLF4JBridgeHandler.getSLF4JLogger(LogRecord record)
Return the Logger instance that will be used for logging.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SLF4JBridgeHandler.callPlainSLF4JLogger(Logger slf4jLogger,
LogRecord record) |
Modifier and Type | Class and 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 of
Logger . |
Modifier and Type | Method and Description |
---|---|
Logger |
SubstituteLoggerFactory.getLogger(String name) |
Logger |
NOPLoggerFactory.getLogger(String name) |
Modifier and Type | Class and Description |
---|---|
class |
JDK14LoggerAdapter
A wrapper over
java.util.logging.Logger in
conformity with the Logger interface. |
class |
SimpleLogger
Simple implementation of
Logger that sends all enabled log messages,
for all defined loggers, to the console (System.err ). |
Modifier and Type | Method and Description |
---|---|
Logger |
JDK14LoggerFactory.getLogger(String name) |
Logger |
SimpleLoggerFactory.getLogger(String name)
Return an appropriate
SimpleLogger instance by name. |
Modifier and Type | Interface and Description |
---|---|
interface |
LocationAwareLogger
An optional interface helping integration with logging systems capable of
extracting location information.
|
Copyright © 2005-2015 QOS.ch. All Rights Reserved.