Uses of Interface
net.sourceforge.acelogger.Logger

Packages that use Logger
net.sourceforge.acelogger This is the base package for AceLogger. 
net.sourceforge.acelogger.constants This package contains classes that define constants used by Appender, Logger, Formatter, etc. 
net.sourceforge.acelogger.execution Provides execution control and monitoring. 
net.sourceforge.acelogger.factory This package contains factory classes to produce configured instances of Appender, Logger, Formatter, etc. 
 

Uses of Logger in net.sourceforge.acelogger
 

Classes in net.sourceforge.acelogger that implement Logger
 class BaseLogger
          Abstracts all common tasks for Logger.
 class EmptyLogger
          An implementation of Logger that does nothing.
 class GenericLogger
          A Logger "container", this class should be used if you want to specify each component of a logger.
 class SimpleLogger
          A pre-configured Logger using A simple formatter, logging to system err and generating file and line location for calls greater than info.
 

Uses of Logger in net.sourceforge.acelogger.constants
 

Fields in net.sourceforge.acelogger.constants declared as Logger
static Logger LoggerConstants.EMPTY
          A logger that do nothing.
static Logger LoggerConstants.NONE
          A logger suitable to indicate that no logger was found.
 

Uses of Logger in net.sourceforge.acelogger.execution
 

Classes in net.sourceforge.acelogger.execution that implement Logger
 class InternalLogger
          An implementation of Logger to be used during the startup and shutdown of the framework.
 

Methods in net.sourceforge.acelogger.execution that return Logger
static Logger LogController.getInternalLogger()
           
 

Uses of Logger in net.sourceforge.acelogger.factory
 

Methods in net.sourceforge.acelogger.factory that return Logger
static Logger LoggerFactory.getDefaultLogger()
          Returns the default logger of this factory, the one used when no logger is found for a given identifier.
static Logger LoggerFactory.getLogger()
          Obtains a properly configured logger based in the callers class information.
static Logger LoggerFactory.getLogger(Class<?> clazz)
          Obtains a properly configured logger for the given class.
static Logger LoggerFactory.getLogger(String identifier)
          Obtains a properly configured logger for the given identifier.
static Logger LoggerFactory.registerLogger(Logger logger)
          Registers an appender within this factory.
static Logger LoggerFactory.setDefaultLogger(Logger defaultLogger)
          Sets the default logger of this factory, the one used when no logger is found for a given identifier.
 

Methods in net.sourceforge.acelogger.factory that return types with arguments of type Logger
static List<Logger> LoggerFactory.getRegisteredLoggers()
          Returns a list of all loggers registered in this factory.
 

Methods in net.sourceforge.acelogger.factory with parameters of type Logger
static Logger LoggerFactory.registerLogger(Logger logger)
          Registers an appender within this factory.
static Logger LoggerFactory.setDefaultLogger(Logger defaultLogger)
          Sets the default logger of this factory, the one used when no logger is found for a given identifier.
 



Copyright © 2007-2010 The AceLogger Team. All Rights Reserved.