| java.lang.Object org.jzonic.jlo.LogEvent
LogEvent | public class LogEvent (Code) | | This class is used by the LogProcessor to bundle all
necessary objects together for processing. It keeps
the handler, fornatter and the LogRecord that forms
one log request that can be processed by the LogProcessor.
author: Andreas Mecky author: Terry Dye |
LogEvent | public LogEvent(Handler handler, Formatter formatter, LogRecord logrecord, LogFilter filter)(Code) | | The constructor that will create the LogEvent object
Parameters: handler - the handler for this logevent Parameters: formatter - the formatter for this logevent (can be null) Parameters: logrecord - the LogRecord for this logevent |
getFormatter | public Formatter getFormatter()(Code) | | This method returns the Formatter for this logevent. The formatter can
be null.
the Formatter |
getHandler | public Handler getHandler()(Code) | | This method returns the Handler for this logevent
the Handler |
getLogRecord | public LogRecord getLogRecord()(Code) | | This method returns the LogRecord for this logevent
the LogRecord |
|
|