Save This Page
Home » apache-log4j-1.2.15 » org.apache » log4j » [javadoc | source]
org.apache.log4j
public class: Hierarchy [javadoc | source]
java.lang.Object
   org.apache.log4j.Hierarchy

All Implemented Interfaces:
    RendererSupport, LoggerRepository

This class is specialized in retrieving loggers by name and also maintaining the logger hierarchy.

The casual user does not have to deal with this class directly.

The structure of the logger hierarchy is maintained by the #getLogger method. The hierarchy is such that children link to their parent but parents do not have any pointers to their children. Moreover, loggers can be instantiated in any order, in particular descendant before ancestor.

In case a descendant is created before a particular ancestor, then it creates a provision node for the ancestor and adds itself to the provision node. Other descendants of the same ancestor add themselves to the previously created provision node.

Field Summary
 Hashtable ht     
 Logger root     
 RendererMap rendererMap     
 int thresholdInt     
 Level threshold     
 boolean emittedNoAppenderWarning     
 boolean emittedNoResourceBundleWarning     
Constructor:
 public Hierarchy(Logger root) 
    Create a new logger hierarchy.
    Parameters:
    root - The root of the new hierarchy.
Method from org.apache.log4j.Hierarchy Summary:
addHierarchyEventListener,   addRenderer,   clear,   emitNoAppenderWarning,   exists,   fireAddAppenderEvent,   fireRemoveAppenderEvent,   getCurrentCategories,   getCurrentLoggers,   getLogger,   getLogger,   getRendererMap,   getRootLogger,   getThreshold,   isDisabled,   overrideAsNeeded,   resetConfiguration,   setDisableOverride,   setRenderer,   setThreshold,   setThreshold,   shutdown
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.log4j.Hierarchy Detail:
 public  void addHierarchyEventListener(HierarchyEventListener listener) 
 public  void addRenderer(Class classToRender,
    ObjectRenderer or) 
    Add an object renderer for a specific class.
 public  void clear() 
    This call will clear all logger definitions from the internal hashtable. Invoking this method will irrevocably mess up the logger hierarchy.

    You should really know what you are doing before invoking this method.

 public  void emitNoAppenderWarning(Category cat) 
 public Logger exists(String name) 
    Check if the named logger exists in the hierarchy. If so return its reference, otherwise returns null.
 public  void fireAddAppenderEvent(Category logger,
    Appender appender) 
  void fireRemoveAppenderEvent(Category logger,
    Appender appender) 
 public Enumeration getCurrentCategories() 
Deprecated! Please - use #getCurrentLoggers instead.

 public Enumeration getCurrentLoggers() 
    Returns all the currently defined categories in this hierarchy as an Enumeration .

    The root logger is not included in the returned Enumeration .

 public Logger getLogger(String name) 
    Return a new logger instance named as the first parameter using the default factory.

    If a logger of that name already exists, then it will be returned. Otherwise, a new logger will be instantiated and then linked with its existing ancestors as well as children.

 public Logger getLogger(String name,
    LoggerFactory factory) 
    Return a new logger instance named as the first parameter using factory.

    If a logger of that name already exists, then it will be returned. Otherwise, a new logger will be instantiated by the factory parameter and linked with its existing ancestors as well as children.

 public RendererMap getRendererMap() 
    Get the renderer map for this hierarchy.
 public Logger getRootLogger() 
    Get the root of this hierarchy.
 public Level getThreshold() 
    Returns a Level representation of the enable state.
 public boolean isDisabled(int level) 
    This method will return true if this repository is disabled for level object passed as parameter and false otherwise. See also the threshold emthod.
 public  void overrideAsNeeded(String override) 
Deprecated! Deprecated - with no replacement.

 public  void resetConfiguration() 
    Reset all values contained in this hierarchy instance to their default. This removes all appenders from all categories, sets the level of all non-root categories to null, sets their additivity flag to true and sets the level of the root logger to DEBUG . Moreover, message disabling is set its default "off" value.

    Existing categories are not removed. They are just reset.

    This method should be used sparingly and with care as it will block all logging until it is completed.

 public  void setDisableOverride(String override) 
Deprecated! Deprecated - with no replacement.

    Does mothing.
 public  void setRenderer(Class renderedClass,
    ObjectRenderer renderer) 
    Used by subclasses to add a renderer to the hierarchy passed as parameter.
 public  void setThreshold(String levelStr) 
 public  void setThreshold(Level l) 
    Enable logging for logging requests with level l or higher. By default all levels are enabled.
 public  void shutdown() 
    Shutting down a hierarchy will safely close and remove all appenders in all categories including the root logger.

    Some appenders such as org.apache.log4j.net.SocketAppender and AsyncAppender need to be closed before the application exists. Otherwise, pending logging events might be lost.

    The shutdown method is careful to close nested appenders before closing regular appenders. This is allows configurations where a regular appender is attached to a logger and again to a nested appender.