Uses of Class
org.apache.log.Logger

Packages that use Logger
org.apache.log Avalon LogKit is the logging framework used throughout the Avalon project. 
org.apache.log.util Utilities suppporting the logging framework. 
 

Uses of Logger in org.apache.log
 

Fields in org.apache.log declared as Logger
private  Logger Hierarchy.m_rootLogger
           
private static Logger[] Logger.EMPTY_SET
           
private  Logger Logger.m_parent
           
private  Logger[] Logger.m_children
           
 

Methods in org.apache.log that return Logger
 Logger Hierarchy.getLoggerFor(java.lang.String category)
          Retrieve a logger for named category.
 Logger Hierarchy.getRootLogger()
          Utility method to retrieve logger for hierarchy.
 Logger[] Logger.getChildren()
          Get all the child Loggers of current logger.
 Logger Logger.getChildLogger(java.lang.String subCategory)
          Create a new child logger.
 

Methods in org.apache.log with parameters of type Logger
private  void Hierarchy.notifyLoggerCreated(java.lang.String category, Logger logger)
          Notify logger listener (if any) that a new logger was created.
 void Hierarchy.InnerLoggerListener.loggerCreated(java.lang.String category, Logger logger)
          Notify listener that a logger was created.
 

Constructors in org.apache.log with parameters of type Logger
Logger(ErrorHandler errorHandler, LoggerListener loggerListener, java.lang.String category, LogTarget[] logTargets, Logger parent)
          Protected constructor for use inside the logging toolkit.
 

Uses of Logger in org.apache.log.util
 

Fields in org.apache.log.util declared as Logger
private  Logger LoggerOutputStream.m_logger
           
 

Methods in org.apache.log.util with parameters of type Logger
abstract  void LoggerListener.loggerCreated(java.lang.String category, Logger logger)
          Notify listener that Logger was created.
 

Constructors in org.apache.log.util with parameters of type Logger
LoggerOutputStream(Logger logger, Priority priority)
          Construct OutputStreamLogger to write to a particular logger at a particular priority.