Uses of Interface
org.objectweb.util.monolog.api.Logger

Packages that use Logger
org.objectweb.util.monolog.api The Monolog API. 
org.objectweb.util.monolog.file.monolog   
org.objectweb.util.monolog.wrapper.common Common class between wrapper implementations. 
org.objectweb.util.monolog.wrapper.config   
org.objectweb.util.monolog.wrapper.javaLog The wrapper for the logging system of the JDK 1.4 (or greater). 
org.objectweb.util.monolog.wrapper.log4j The wrapper for the logging system log4j. 
org.objectweb.util.monolog.wrapper.log4jMini The wrapper for the logging system log4jMini. 
org.objectweb.util.monolog.wrapper.p6spy The wrapper for the tool P6Spy (JDBC driver logger). 
org.objectweb.util.monolog.wrapper.printwriter Librairies for wrapping Monolog from or to a PrintWriter or PrintStream. 
org.objectweb.util.monolog.wrapper.velocity The wrapper for generation tool Velocity (Jakarta). 
 

Uses of Logger in org.objectweb.util.monolog.api
 

Subinterfaces of Logger in org.objectweb.util.monolog.api
 interface TopicalLogger
          A TopicalLogger dispatches events to a set of Handlers.
 

Methods in org.objectweb.util.monolog.api that return Logger
 Logger LoggerFactory.getLogger(java.lang.String key)
          This method permits to fetch a Logger.
 Logger LoggerFactory.getLogger(java.lang.String key, java.lang.String resourceBundleName)
          This method permits to fetch a Logger.
 Logger[] LoggerFactory.getLoggers()
          It retrieves a list of all loggers.
 Logger Loggable.getLogger()
          Retrieves the logger instance used
 

Methods in org.objectweb.util.monolog.api with parameters of type Logger
 void Loggable.setLogger(Logger logger)
          Assigns the logger instance to use
 

Uses of Logger in org.objectweb.util.monolog.file.monolog
 

Methods in org.objectweb.util.monolog.file.monolog that return Logger
protected  Logger PropertiesConfAccess.parseLoggerProp(java.util.Properties prop, java.lang.String key, LoggerFactory lof, HandlerFactory hf, LevelFactory lef)
          It parses a property entry to build or configure a Logger instance.
protected  Logger PropertiesConfAccess.parseLoggerProp(java.util.Properties prop, java.lang.String key, MonologFactory mf)
          It parses a property entry to build or configure a Logger instance.
 

Uses of Logger in org.objectweb.util.monolog.wrapper.common
 

Methods in org.objectweb.util.monolog.wrapper.common that return Logger
abstract  Logger AbstractFactory.getLogger(java.lang.String key)
           
abstract  Logger[] AbstractFactory.getLoggers()
           
 

Uses of Logger in org.objectweb.util.monolog.wrapper.config
 

Classes in org.objectweb.util.monolog.wrapper.config that implement Logger
 class BasicLogger
          This class is a basic implementatio of the TopicalLogger interface.
 

Methods in org.objectweb.util.monolog.wrapper.config that return Logger
 Logger BasicFactory.getLogger(java.lang.String _key)
           
 Logger BasicFactory.getLogger(java.lang.String key, java.lang.String resourceBundleName)
           
 Logger[] BasicFactory.getLoggers()
           
 

Uses of Logger in org.objectweb.util.monolog.wrapper.javaLog
 

Classes in org.objectweb.util.monolog.wrapper.javaLog that implement Logger
 class Logger
          Is an extension of the java.util.logging.Logger class used to wrap Monolog on the logging system provided in the JDK since the 1.4 version.
 

Methods in org.objectweb.util.monolog.wrapper.javaLog that return Logger
 Logger LoggerFactory.getLogger(java.lang.String key)
           
 Logger LoggerFactory.getLogger(java.lang.String key, java.lang.String rbn)
           
 Logger[] LoggerFactory.getLoggers()
          It retrieves a list of all loggers.
 

Uses of Logger in org.objectweb.util.monolog.wrapper.log4j
 

Classes in org.objectweb.util.monolog.wrapper.log4j that implement Logger
 class MonologCategory
          This class wraps the Logger concept into the log4j world.
 

Fields in org.objectweb.util.monolog.wrapper.log4j declared as Logger
protected  Logger MonologLoggerFactory.rootLogger
          The root logger of the logger hierarchy
 

Methods in org.objectweb.util.monolog.wrapper.log4j that return Logger
 Logger MonologLoggerFactory.getLogger(java.lang.String key)
           
 Logger MonologLoggerFactory.getLogger(java.lang.String key, java.lang.String rbn)
           
 Logger[] MonologLoggerFactory.getLoggers()
           
 

Uses of Logger in org.objectweb.util.monolog.wrapper.log4jMini
 

Fields in org.objectweb.util.monolog.wrapper.log4jMini declared as Logger
protected  Logger MonologLoggerFactory.rootLogger
          The root logger of the logger hierarchy
 

Methods in org.objectweb.util.monolog.wrapper.log4jMini that return Logger
 Logger[] MonologLoggerFactory.getLoggers()
           
 Logger MonologLoggerFactory.getLogger(java.lang.String key)
           
 Logger MonologLoggerFactory.getLogger(java.lang.String key, java.lang.String rbn)
           
 

Uses of Logger in org.objectweb.util.monolog.wrapper.p6spy
 

Fields in org.objectweb.util.monolog.wrapper.p6spy declared as Logger
static Logger P6SpyLogger.logger
           
 

Uses of Logger in org.objectweb.util.monolog.wrapper.printwriter
 

Classes in org.objectweb.util.monolog.wrapper.printwriter that implement Logger
 class LoggerImpl
          This class is a simple implementation of the Logger interface provided by the monolog specification.
 

Fields in org.objectweb.util.monolog.wrapper.printwriter declared as Logger
protected  Logger PrintWriterImpl.logger
          The inner logger instance
protected  Logger PrintStreamImpl.logger
           
 

Methods in org.objectweb.util.monolog.wrapper.printwriter that return Logger
 Logger PrintWriterImpl.getLogger()
          Retrieves the logger instance used
 Logger PrintStreamImpl.getLogger()
          Retrieves the logger instance used
 Logger LoggerImpl.getLogger(java.lang.String key)
           
 Logger LoggerImpl.getLogger(java.lang.String key, java.lang.String resourceBundleName)
           
 Logger[] LoggerImpl.getLoggers()
           
 

Methods in org.objectweb.util.monolog.wrapper.printwriter with parameters of type Logger
 void PrintWriterImpl.setLogger(Logger logger)
          Assigns the logger instance to use
 void PrintStreamImpl.setLogger(Logger logger)
          Assigns the logger instance to use
 

Constructors in org.objectweb.util.monolog.wrapper.printwriter with parameters of type Logger
PrintWriterImpl(Logger l)
          It builds a PrintWriterImpl instance.
PrintWriterImpl(Logger logger, LoggerFactory loggerFactory)
          It builds a PrintWriterImpl instance.
PrintWriterImpl(Logger l, int level)
          It builds a PrintWriterImpl instance.
PrintStreamImpl(Logger l)
          It builds a PrintWriterImpl instance.
PrintStreamImpl(Logger l, int level)
          It builds a PrintWriterImpl instance.
 

Uses of Logger in org.objectweb.util.monolog.wrapper.velocity
 

Methods in org.objectweb.util.monolog.wrapper.velocity that return Logger
 Logger VelocityLogger.getLog()
           
 

Methods in org.objectweb.util.monolog.wrapper.velocity with parameters of type Logger
 void VelocityLogger.setLog(Logger l)
           
 

Constructors in org.objectweb.util.monolog.wrapper.velocity with parameters of type Logger
VelocityLogger(Logger l)