| java.lang.Object org.jzonic.jlo.LogGenerator
LogGenerator | public class LogGenerator (Code) | | The LogGenerator is a logical combination of a Handler and a Formatter.
Every logger or channel must have a reference to one LogGenerator.
Each LogGenerator must have an unique name in a configuration. This
name is used for the referencing.
author: Andreas Mecky author: Terry Dye |
getFilter | public LogFilter getFilter()(Code) | | This method returns the filter if one was set
Value the filter or NULL |
getFormatter | public Formatter getFormatter()(Code) | | This method returns the Formatter for this LogGenerator
the Formatter |
getHandler | public Handler getHandler()(Code) | | This method returns the Handler for this LogGenerator
the handler |
getName | public String getName()(Code) | | This method returns the name of the LogGenerator
the name of the LogGenerator |
setFilter | public void setFilter(LogFilter filter)(Code) | | This method sets the filter associated with the generator
Parameters: filter - the filter that will be used |
|
|