Uses of Class
ch.qos.logback.classic.spi.LoggingEvent

Packages that use LoggingEvent
ch.qos.logback.classic Contains logback classic main classes. 
ch.qos.logback.classic.boolex   
ch.qos.logback.classic.db The ch.qos.logback.classic.db package provides means to append logging events into various databases. 
ch.qos.logback.classic.html Contains classes to format log output in HTML. 
ch.qos.logback.classic.net Contains classes used to log through a network 
ch.qos.logback.classic.pattern Provides classes implementing format specifiers in conversion patterns. 
ch.qos.logback.classic.sift   
ch.qos.logback.classic.util Contains utility classes. 
chapter4   
chapter5   
 

Uses of LoggingEvent in ch.qos.logback.classic
 

Methods in ch.qos.logback.classic that return types with arguments of type LoggingEvent
 Appender<LoggingEvent> Logger.getAppender(String name)
           
 Iterator<Appender<LoggingEvent>> Logger.iteratorForAppenders()
           
 

Methods in ch.qos.logback.classic with parameters of type LoggingEvent
 void Logger.callAppenders(LoggingEvent event)
          Invoke all the appenders of this logger.
 String PatternLayout.doLayout(LoggingEvent event)
           
 

Method parameters in ch.qos.logback.classic with type arguments of type LoggingEvent
 void Logger.addAppender(Appender<LoggingEvent> newAppender)
           
 

Uses of LoggingEvent in ch.qos.logback.classic.boolex
 

Methods in ch.qos.logback.classic.boolex with parameters of type LoggingEvent
 boolean OnErrorEvaluator.evaluate(LoggingEvent event)
          Return true if event passed as parameter has level ERROR or higher, returns false otherwise.
protected  Object[] JaninoEventEvaluator.getParameterValues(LoggingEvent loggingEvent)
           
 

Uses of LoggingEvent in ch.qos.logback.classic.db
 

Methods in ch.qos.logback.classic.db with parameters of type LoggingEvent
static short DBHelper.computeReferenceMask(LoggingEvent event)
           
 

Uses of LoggingEvent in ch.qos.logback.classic.html
 

Methods in ch.qos.logback.classic.html with parameters of type LoggingEvent
 String HTMLLayout.doLayout(LoggingEvent event)
           
 

Uses of LoggingEvent in ch.qos.logback.classic.net
 

Fields in ch.qos.logback.classic.net with type parameters of type LoggingEvent
protected  CyclicBuffer<LoggingEvent> SMTPAppender.cb
           
 

Methods in ch.qos.logback.classic.net that return types with arguments of type LoggingEvent
 Layout<LoggingEvent> SyslogAppender.buildLayout(String facilityStr)
           
protected  Layout<LoggingEvent> SMTPAppender.makeSubjectLayout(String subjectStr)
           
 

Methods in ch.qos.logback.classic.net with parameters of type LoggingEvent
 void JMSQueueAppender.append(LoggingEvent event)
          This method called by AppenderBase.doAppend(E) method to do most of the real appending work.
 void JMSTopicAppender.append(LoggingEvent event)
          This method called by AppenderBase.doAppend(E) method to do most of the real appending work.
protected  void SocketAppender.postProcessEvent(LoggingEvent event)
           
protected  void SMTPAppender.subAppend(LoggingEvent event)
          Perform SMTPAppender specific appending actions, mainly adding the event to a cyclic buffer.
 

Constructor parameters in ch.qos.logback.classic.net with type arguments of type LoggingEvent
SMTPAppender(EventEvaluator<LoggingEvent> eventEvaluator)
          Use the parameter as the EventEvaluator for this SMTPAppender.
 

Uses of LoggingEvent in ch.qos.logback.classic.pattern
 

Methods in ch.qos.logback.classic.pattern with parameters of type LoggingEvent
 String MessageConverter.convert(LoggingEvent event)
           
 String FileOfCallerConverter.convert(LoggingEvent le)
           
 String MarkerConverter.convert(LoggingEvent le)
           
 String ContextNameConverter.convert(LoggingEvent event)
          Return the name of the logger context's name.
 String LineSeparatorConverter.convert(LoggingEvent event)
           
 String RelativeTimeConverter.convert(LoggingEvent event)
           
 String SyslogStartConverter.convert(LoggingEvent event)
           
 String MethodOfCallerConverter.convert(LoggingEvent le)
           
 String LevelConverter.convert(LoggingEvent le)
           
 String DateConverter.convert(LoggingEvent le)
           
 String ThrowableProxyConverter.convert(LoggingEvent event)
           
 String CallerDataConverter.convert(LoggingEvent le)
           
 String NopThrowableInformationConverter.convert(LoggingEvent event)
           
 String ThreadConverter.convert(LoggingEvent event)
           
 String LineOfCallerConverter.convert(LoggingEvent le)
           
 String MDCConverter.convert(LoggingEvent event)
           
 String NamedConverter.convert(LoggingEvent event)
           
protected abstract  String NamedConverter.getFullyQualifiedName(LoggingEvent event)
          Gets fully qualified name from event.
protected  String ClassOfCallerConverter.getFullyQualifiedName(LoggingEvent event)
           
protected  String LoggerConverter.getFullyQualifiedName(LoggingEvent event)
           
protected  void ThrowableProxyConverter.prepareLoggingEvent(LoggingEvent event)
           
protected  void ExtendedThrowableProxyConverter.prepareLoggingEvent(LoggingEvent event)
           
 

Method parameters in ch.qos.logback.classic.pattern with type arguments of type LoggingEvent
 void EnsureExceptionHandling.process(Converter<LoggingEvent> head)
          This implementation checks if any of the converters in the chain handles exceptions.
 

Uses of LoggingEvent in ch.qos.logback.classic.sift
 

Methods in ch.qos.logback.classic.sift that return types with arguments of type LoggingEvent
 Appender<LoggingEvent> SiftingJoranConfigurator.getAppender()
           
 SiftingJoranConfiguratorBase<LoggingEvent> AppenderFactory.getSiftingJoranConfigurator(String k)
           
 

Methods in ch.qos.logback.classic.sift with parameters of type LoggingEvent
 String MDCBasedDiscriminator.getDiscriminatingValue(LoggingEvent event)
          Return the value associated with an MDC entry desginated by the Key property.
protected  long SiftingAppender.getTimestamp(LoggingEvent event)
           
 

Method parameters in ch.qos.logback.classic.sift with type arguments of type LoggingEvent
 void SiftingAppender.setDiscriminator(Discriminator<LoggingEvent> discriminator)
           
 

Uses of LoggingEvent in ch.qos.logback.classic.util
 

Methods in ch.qos.logback.classic.util with parameters of type LoggingEvent
static int LevelToSyslogSeverity.convert(LoggingEvent event)
           
 

Uses of LoggingEvent in chapter4
 

Methods in chapter4 that return types with arguments of type LoggingEvent
 Layout<LoggingEvent> CountingConsoleAppender.getLayout()
           
 

Methods in chapter4 with parameters of type LoggingEvent
 void CountingConsoleAppender.append(LoggingEvent event)
           
 

Method parameters in chapter4 with type arguments of type LoggingEvent
 void CountingConsoleAppender.setLayout(Layout<LoggingEvent> layout)
           
 

Uses of LoggingEvent in chapter5
 

Methods in chapter5 with parameters of type LoggingEvent
 String MySampleConverter.convert(LoggingEvent event)
           
 String MySampleLayout2.doLayout(LoggingEvent event)
           
 String MySampleLayout.doLayout(LoggingEvent event)
           
 



Copyright © 2005-2011 QOS.ch. All Rights Reserved.