| |
|
| java.lang.Object org.jzonic.jlo.processor.AbstractLogProcessor org.jzonic.jlo.processor.DirectLogProcessor
DirectLogProcessor | public class DirectLogProcessor extends AbstractLogProcessor (Code) | | The DirectLogProcessor is a concrete implementation of
the LogProcessor and handles all request immediately.
author: Andreas Mecky author: Terry Dye |
DirectLogProcessor | public DirectLogProcessor()(Code) | | Constructor for the DirectLogProcessor object
|
flush | public void flush()(Code) | | This method does nothing
|
processEvent | public void processEvent(LogGenerator lg, LogRecord lr)(Code) | | This method processes every log request. If the LogGenerator
is not NULL then it will try to get the Formatter from it.
If this formatter is not NULL it will call the formatMessage
method to format the message and then call the publish method
of the corresponding Handler. Otherwise it will only call the
publish method.
Parameters: lg - the LogGenerator Parameters: lr - the LogRecord |
|
|
|