Log4j 0.9.1

Uses of Class
org.log4j.spi.LoggingEvent

Packages that use LoggingEvent
org.log4j The main package of log4j. 
org.log4j.helpers This package is used internally. 
org.log4j.net Package for remote logging. 
org.log4j.nt Package for NT event logging. 
org.log4j.performance Package to measure the performance of the different log4j components. 
org.log4j.spi Contains part of the System Programming Interface (SPI) needed to extend log4j. 
org.log4j.varia Contains various appenders, filters and other odds and ends. 
org.log4j.xml XML based components. 
 

Uses of LoggingEvent in org.log4j
 

Methods in org.log4j with parameters of type LoggingEvent
protected abstract  void AppenderSkeleton.append(LoggingEvent event)
          Subclasses of AppenderSkeleton should imlement this method to perform actual logging.
 void AppenderSkeleton.doAppend(LoggingEvent event)
          This method performs threshold checks and invokes filters before delegating actual logging to the sub-classes specific AppenderSkeleton.append(org.log4j.spi.LoggingEvent) method.
 void AsyncAppender.append(LoggingEvent event)
           
abstract  String Layout.format(LoggingEvent event)
          Implement this method to create your own layout format.
 String SimpleLayout.format(LoggingEvent event)
          Return the a log statement in a format consisting of the priority, folloed by " - " and then the message.
 void FileAppender.append(LoggingEvent event)
          This method called by AppenderSkeleton.doAppend(org.log4j.spi.LoggingEvent) method.
protected  void FileAppender.subAppend(LoggingEvent event)
          Actual writing occurs here.
 void Category.callAppenders(LoggingEvent event)
          Call the appenders in the hierrachy starting at this.
 String PatternLayout.format(LoggingEvent event)
          Produces a formatted string as specified by the conversion pattern.
 void Appender.doAppend(LoggingEvent event)
          Log in Appender specific way.
 String TTCCLayout.format(LoggingEvent event)
          In addition to the priority of the statement and message, the returned byte array includes time, thread, category and NDC information.
protected  void RollingFileAppender.subAppend(LoggingEvent event)
          This method differentiates RollingFileAppender from its super class.
 

Uses of LoggingEvent in org.log4j.helpers
 

Methods in org.log4j.helpers that return LoggingEvent
 LoggingEvent BoundedFIFO.get()
          Get the first element in the buffer.
 LoggingEvent CyclicBuffer.get(int i)
          Get the ith oldest event currently in the buffer.
 

Methods in org.log4j.helpers with parameters of type LoggingEvent
 void DateLayout.dateFormat(StringBuffer buf, LoggingEvent event)
           
 void BoundedFIFO.put(LoggingEvent o)
          Place a LoggingEvent in the buffer.
 void CyclicBuffer.add(LoggingEvent event)
          Add an event as the last event in the buffer.
protected abstract  String PatternConverter.convert(LoggingEvent event)
          Derived pattern converters must override this method in order to convert conversion specifiers in the correct way.
 void PatternConverter.format(StringBuffer sbuf, LoggingEvent e)
          A template method for formatting in a converter specific way.
 int AppenderAttachableImpl.appendLoopOnAppenders(LoggingEvent event)
          Call the doAppend method on all attached appenders.
 

Uses of LoggingEvent in org.log4j.net
 

Methods in org.log4j.net with parameters of type LoggingEvent
 void SocketAppender.append(LoggingEvent event)
           
 void SyslogAppender.append(LoggingEvent event)
           
 

Uses of LoggingEvent in org.log4j.nt
 

Methods in org.log4j.nt with parameters of type LoggingEvent
 void NTEventLogAppender.append(LoggingEvent event)
           
 

Uses of LoggingEvent in org.log4j.performance
 

Methods in org.log4j.performance with parameters of type LoggingEvent
 void NullAppender.doAppend(LoggingEvent event)
           
 void NullAppender.append(LoggingEvent event)
           
 

Uses of LoggingEvent in org.log4j.spi
 

Methods in org.log4j.spi with parameters of type LoggingEvent
abstract  int Filter.decide(LoggingEvent event)
          If the decision is DENY, then the event will be dropped.
 

Uses of LoggingEvent in org.log4j.varia
 

Methods in org.log4j.varia with parameters of type LoggingEvent
 int StringMatchFilter.decide(LoggingEvent event)
          Returns Filter.NEUTRAL is there is no string match.
 int DenyAllFilter.decide(LoggingEvent event)
          Always returns the integer constant Filter.DENY regardless of the LoggingEvent parameter.
 int PriorityMatchFilter.decide(LoggingEvent event)
          Return the decision of this filter.
 

Uses of LoggingEvent in org.log4j.xml
 

Methods in org.log4j.xml with parameters of type LoggingEvent
 String XMLLayout.format(LoggingEvent event)
          Formats a LoggingEvent in conformance with the log4j.dtd.
 


Log4j 0.9.1

Please notify me about new log4j releases.