Uses of Interface
org.slf4j.Logger

Packages that use 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. 
 

Uses of Logger in org.slf4j
 

Methods in org.slf4j that return Logger
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.
 

Uses of Logger in org.slf4j.bridge
 

Methods in org.slf4j.bridge that return Logger
protected  Logger SLF4JBridgeHandler.getSLF4JLogger(LogRecord record)
          Return the Logger instance that will be used for logging.
 

Methods in org.slf4j.bridge with parameters of type Logger
protected  void SLF4JBridgeHandler.callPlainSLF4JLogger(Logger slf4jLogger, LogRecord record)
           
 

Uses of Logger in org.slf4j.helpers
 

Classes in org.slf4j.helpers that implement Logger
 class MarkerIgnoringBase
          This class serves as base for adapters or native implementations of logging systems lacking Marker support.
 

Uses of Logger in org.slf4j.impl
 

Classes in org.slf4j.impl that implement Logger
 class JCLLoggerAdapter
          A wrapper over org.apache.commons.logging.Log in conformance with the Logger interface.
 class JDK14LoggerAdapter
          A wrapper over java.util.logging.Logger in conformity with the Logger interface.
 class Log4jLoggerAdapter
          A wrapper over org.apache.log4j.Logger in conforming to the Logger interface.
 class NOPLogger
          A direct NOP (no operation) implementation of Logger.
 class SimpleLogger
          A simple (and direct) implementation that logs messages of level INFO or higher on the console (System.err).
 

Methods in org.slf4j.impl that return Logger
 Logger JCLLoggerFactory.getLogger(String name)
           
 Logger Log4jLoggerFactory.getLogger(String name)
           
 Logger JDK14LoggerFactory.getLogger(String name)
           
 Logger NOPLoggerFactory.getLogger(String name)
           
 Logger SimpleLoggerFactory.getLogger(String name)
          Return an appropriate SimpleLogger instance by name.
 

Uses of Logger in org.slf4j.spi
 

Subinterfaces of Logger in org.slf4j.spi
 interface LocationAwareLogger
          An optional interface helping integration with logging systems capable of extracting location information.
 



Copyright © 2005-2010 QOS.ch. All Rights Reserved.