Uses of Interface
ch.qos.logback.classic.spi.ILoggingEvent

Packages that use ILoggingEvent
ch.qos.logback.classic Contains logback classic main classes. 
ch.qos.logback.classic.android Contains logback-classic classes bound to the Android SDK
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.filter   
ch.qos.logback.classic.html Contains classes to format log output in HTML. 
ch.qos.logback.classic.log4j Contains support for log4j output formats. 
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.pattern.color   
ch.qos.logback.classic.sift   
ch.qos.logback.classic.spi Contains core classes of logback classic. 
ch.qos.logback.classic.util Contains utility classes. 
chapters.appenders   
chapters.filters   
chapters.layouts   
chapters.migrationFromLog4j   
 

Uses of ILoggingEvent in ch.qos.logback.classic
 

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

Methods in ch.qos.logback.classic with parameters of type ILoggingEvent
 void Logger.callAppenders(ILoggingEvent event)
          Invoke all the appenders of this logger.
 String PatternLayout.doLayout(ILoggingEvent event)
           
protected  boolean AsyncAppender.isDiscardable(ILoggingEvent event)
          Events of level TRACE, DEBUG and INFO are deemed to be discardable.
protected  void AsyncAppender.preprocess(ILoggingEvent eventObject)
           
 

Method parameters in ch.qos.logback.classic with type arguments of type ILoggingEvent
 void Logger.addAppender(Appender<ILoggingEvent> newAppender)
           
 boolean Logger.detachAppender(Appender<ILoggingEvent> appender)
          Remove the appender passed as parameter form the list of appenders.
 boolean Logger.isAttached(Appender<ILoggingEvent> appender)
           
 

Uses of ILoggingEvent in ch.qos.logback.classic.android
 

Methods in ch.qos.logback.classic.android with parameters of type ILoggingEvent
 void LogcatAppender.append(ILoggingEvent event)
          Writes an event to Android's logging mechanism (logcat)
 

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

Methods in ch.qos.logback.classic.boolex with parameters of type ILoggingEvent
 boolean IEvaluator.doEvaluate(ILoggingEvent event)
           
 boolean OnMarkerEvaluator.evaluate(ILoggingEvent event)
          Return true if event passed as parameter contains one of the specified user-markers.
 boolean OnErrorEvaluator.evaluate(ILoggingEvent event)
          Return true if event passed as parameter has level ERROR or higher, returns false otherwise.
 

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

Methods in ch.qos.logback.classic.db with parameters of type ILoggingEvent
static short DBHelper.computeReferenceMask(ILoggingEvent event)
           
protected  void DBAppender.secondarySubAppend(ILoggingEvent event, Connection connection, long eventId)
           
protected  void DBAppender.subAppend(ILoggingEvent event, Connection connection, PreparedStatement insertStatement)
           
 

Uses of ILoggingEvent in ch.qos.logback.classic.filter
 

Methods in ch.qos.logback.classic.filter with parameters of type ILoggingEvent
 FilterReply ThresholdFilter.decide(ILoggingEvent event)
           
 FilterReply LevelFilter.decide(ILoggingEvent event)
           
 

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

Methods in ch.qos.logback.classic.html with parameters of type ILoggingEvent
 String HTMLLayout.doLayout(ILoggingEvent event)
           
 void DefaultThrowableRenderer.render(StringBuilder sbuf, ILoggingEvent event)
           
 

Method parameters in ch.qos.logback.classic.html with type arguments of type ILoggingEvent
 void HTMLLayout.setThrowableRenderer(IThrowableRenderer<ILoggingEvent> throwableRenderer)
           
 

Uses of ILoggingEvent in ch.qos.logback.classic.log4j
 

Methods in ch.qos.logback.classic.log4j with parameters of type ILoggingEvent
 String XMLLayout.doLayout(ILoggingEvent event)
          Formats a ILoggingEvent in conformity with the log4j.dtd.
 

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

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

Methods in ch.qos.logback.classic.net with parameters of type ILoggingEvent
protected  boolean SMTPAppender.isEventMarkedForBufferRemoval(ILoggingEvent eventObject)
           
protected  void SocketAppender.postProcessEvent(ILoggingEvent event)
           
protected  void SMTPAppender.subAppend(CyclicBuffer<ILoggingEvent> cb, ILoggingEvent event)
          Perform SMTPAppender specific appending actions, mainly adding the event to a cyclic buffer.
 Serializable LoggingEventPreSerializationTransformer.transform(ILoggingEvent event)
           
 

Method parameters in ch.qos.logback.classic.net with type arguments of type ILoggingEvent
protected  void SMTPAppender.fillBuffer(CyclicBuffer<ILoggingEvent> cb, StringBuffer sbuf)
           
protected  void SMTPAppender.subAppend(CyclicBuffer<ILoggingEvent> cb, ILoggingEvent 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 ILoggingEvent
SMTPAppender(EventEvaluator<ILoggingEvent> eventEvaluator)
          Use the parameter as the EventEvaluator for this SMTPAppender.
 

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

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

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

Uses of ILoggingEvent in ch.qos.logback.classic.pattern.color
 

Methods in ch.qos.logback.classic.pattern.color with parameters of type ILoggingEvent
protected  String HighlightingCompositeConverter.getForegroundColorCode(ILoggingEvent event)
           
 

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

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

Methods in ch.qos.logback.classic.sift with parameters of type ILoggingEvent
 String MDCBasedDiscriminator.getDiscriminatingValue(ILoggingEvent event)
          Return the value associated with an MDC entry designated by the Key property.
 String ContextBasedDiscriminator.getDiscriminatingValue(ILoggingEvent event)
          Return the name of the current context name as found in the logging event.
protected  long SiftingAppender.getTimestamp(ILoggingEvent event)
           
 

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

Uses of ILoggingEvent in ch.qos.logback.classic.spi
 

Classes in ch.qos.logback.classic.spi that implement ILoggingEvent
 class LoggingEvent
          The internal representation of logging events.
 class LoggingEventVO
          A read-only and serializable implementation of ILoggingEvent.
 

Methods in ch.qos.logback.classic.spi with parameters of type ILoggingEvent
static LoggingEventVO LoggingEventVO.build(ILoggingEvent le)
           
 

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

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

Uses of ILoggingEvent in chapters.appenders
 

Methods in chapters.appenders with parameters of type ILoggingEvent
 void CountingConsoleAppender.append(ILoggingEvent event)
           
 

Uses of ILoggingEvent in chapters.filters
 

Methods in chapters.filters with parameters of type ILoggingEvent
 FilterReply SampleFilter.decide(ILoggingEvent event)
           
 

Uses of ILoggingEvent in chapters.layouts
 

Methods in chapters.layouts with parameters of type ILoggingEvent
 String MySampleConverter.convert(ILoggingEvent event)
           
 String MySampleLayout2.doLayout(ILoggingEvent event)
           
 String MySampleLayout.doLayout(ILoggingEvent event)
           
 

Uses of ILoggingEvent in chapters.migrationFromLog4j
 

Methods in chapters.migrationFromLog4j with parameters of type ILoggingEvent
protected  void TrivialLogbackAppender.append(ILoggingEvent loggingevent)
           
 String TrivialLogbackLayout.doLayout(ILoggingEvent loggingEvent)
           
 



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