Uses of Interface
ch.qos.logback.core.Appender

Packages that use Appender
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.db The ch.qos.logback.classic.db package provides means to append logging events into various databases. 
ch.qos.logback.classic.net Contains classes used to log through a network 
ch.qos.logback.classic.sift   
ch.qos.logback.core Contains the main classes of logback core. 
ch.qos.logback.core.db The ch.qos.logback.core.db package provides bases classes to append objects into various databases. 
ch.qos.logback.core.helpers Helpers package. 
ch.qos.logback.core.net Contains the base classes used by logback to log to remote destinations. 
ch.qos.logback.core.read   
ch.qos.logback.core.rolling Implements various file rolling policies. 
ch.qos.logback.core.sift   
ch.qos.logback.core.spi Contains core functionnalities of logback, such as 
chapters.appenders   
chapters.migrationFromLog4j   
 

Uses of Appender in ch.qos.logback.classic
 

Classes in ch.qos.logback.classic that implement Appender
 class AsyncAppender
          In order to optimize performance this appender deems events of level TRACE, DEBUG and INFO as discardable.
 

Methods in ch.qos.logback.classic that return Appender
 Appender<ILoggingEvent> Logger.getAppender(String name)
           
 

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

Methods in ch.qos.logback.classic with parameters of type Appender
 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 Appender in ch.qos.logback.classic.android
 

Classes in ch.qos.logback.classic.android that implement Appender
 class LogcatAppender
          An appender that wraps the native Android logging mechanism (logcat); redirects all logging requests to logcat
 

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

Classes in ch.qos.logback.classic.db that implement Appender
 class DBAppender
          The DBAppender inserts logging events into three database tables in a format independent of the Java programming language.
 

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

Classes in ch.qos.logback.classic.net that implement Appender
 class SMTPAppender
          Send an e-mail when a specific logging event occurs, typically on errors or fatal errors.
 class SocketAppender
          Sends ILoggingEvent objects to a remote a log server, usually a SocketNode.
 class SyslogAppender
          This appender can be used to send messages to a remote syslog daemon.
 

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

Classes in ch.qos.logback.classic.sift that implement Appender
 class SiftingAppender
          This appender can contains other appenders which it can build dynamically depending on MDC values.
 

Methods in ch.qos.logback.classic.sift that return Appender
 Appender<ILoggingEvent> SiftingJoranConfigurator.getAppender()
           
 

Uses of Appender in ch.qos.logback.core
 

Classes in ch.qos.logback.core that implement Appender
 class AppenderBase<E>
          Sets a skeleton implementation for appenders.
 class AsyncAppenderBase<E>
          This appender and derived classes, log events asynchronously.
 class ConsoleAppender<E>
          ConsoleAppender appends log events to System.out or System.err using a layout specified by the user.
 class FileAppender<E>
          FileAppender appends log events to a file.
 class OutputStreamAppender<E>
          OutputStreamAppender appends events to a OutputStream.
 class UnsynchronizedAppenderBase<E>
          Similar to AppenderBase except that derived appenders need to handle thread synchronization on their own.
 

Methods in ch.qos.logback.core that return Appender
 Appender<E> AsyncAppenderBase.getAppender(String name)
           
 

Methods in ch.qos.logback.core that return types with arguments of type Appender
 Iterator<Appender<E>> AsyncAppenderBase.iteratorForAppenders()
           
 

Methods in ch.qos.logback.core with parameters of type Appender
 void AsyncAppenderBase.addAppender(Appender<E> newAppender)
           
 boolean AsyncAppenderBase.detachAppender(Appender<E> eAppender)
           
 boolean AsyncAppenderBase.isAttached(Appender<E> eAppender)
           
 

Uses of Appender in ch.qos.logback.core.db
 

Classes in ch.qos.logback.core.db that implement Appender
 class DBAppenderBase<E>
           
 

Uses of Appender in ch.qos.logback.core.helpers
 

Classes in ch.qos.logback.core.helpers that implement Appender
 class NOPAppender<E>
           
 

Uses of Appender in ch.qos.logback.core.net
 

Classes in ch.qos.logback.core.net that implement Appender
 class SMTPAppenderBase<E>
          An abstract class that provides support for sending events to an email address.
 class SocketAppenderBase<E>
          This is the base class for module specific SocketAppender implementations.
 class SyslogAppenderBase<E>
          Base class for SyslogAppender.
 

Uses of Appender in ch.qos.logback.core.read
 

Classes in ch.qos.logback.core.read that implement Appender
 class CyclicBufferAppender<E>
          CyclicBufferAppender stores events in a cyclic buffer of user-specified size.
 class ListAppender<E>
           
 

Uses of Appender in ch.qos.logback.core.rolling
 

Classes in ch.qos.logback.core.rolling that implement Appender
 class RollingFileAppender<E>
          RollingFileAppender extends FileAppender to backup the log files depending on RollingPolicy and TriggeringPolicy.
 

Uses of Appender in ch.qos.logback.core.sift
 

Classes in ch.qos.logback.core.sift that implement Appender
 class SiftingAppenderBase<E>
          This appender serves as the base class for actual SiftingAppenders implemented by the logback-classic and logback-access modules.
 

Methods in ch.qos.logback.core.sift that return Appender
 Appender<E> AppenderTrackerImpl.get(String key, long timestamp)
           
 Appender<E> AppenderTracker.get(String key, long timestamp)
           
abstract  Appender<E> SiftingJoranConfiguratorBase.getAppender()
           
 

Methods in ch.qos.logback.core.sift that return types with arguments of type Appender
 List<Appender<E>> AppenderTrackerImpl.valueList()
           
 List<Appender<E>> AppenderTracker.valueList()
           
 

Methods in ch.qos.logback.core.sift with parameters of type Appender
 void AppenderTrackerImpl.put(String key, Appender<E> value, long timestamp)
           
 void AppenderTracker.put(String key, Appender<E> value, long timestamp)
           
 

Uses of Appender in ch.qos.logback.core.spi
 

Methods in ch.qos.logback.core.spi that return Appender
 Appender<E> AppenderAttachableImpl.getAppender(String name)
          Look for an attached appender named as name.
 Appender<E> AppenderAttachable.getAppender(String name)
          Get an appender by name.
 

Methods in ch.qos.logback.core.spi that return types with arguments of type Appender
 Iterator<Appender<E>> AppenderAttachableImpl.iteratorForAppenders()
          Get all attached appenders as an Enumeration.
 Iterator<Appender<E>> AppenderAttachable.iteratorForAppenders()
          Get an iterator for appenders contained in the parent object.
 

Methods in ch.qos.logback.core.spi with parameters of type Appender
 void AppenderAttachableImpl.addAppender(Appender<E> newAppender)
          Attach an appender.
 void AppenderAttachable.addAppender(Appender<E> newAppender)
          Add an appender.
 boolean AppenderAttachableImpl.detachAppender(Appender<E> appender)
          Remove the appender passed as parameter form the list of attached appenders.
 boolean AppenderAttachable.detachAppender(Appender<E> appender)
          Detach the appender passed as parameter from the list of appenders.
 boolean AppenderAttachableImpl.isAttached(Appender<E> appender)
          Returns true if the specified appender is in the list of attached appenders, false otherwise.
 boolean AppenderAttachable.isAttached(Appender<E> appender)
          Returns true if the specified appender is in list of attached attached, false otherwise.
 

Uses of Appender in chapters.appenders
 

Classes in chapters.appenders that implement Appender
 class CountingConsoleAppender
           
 

Uses of Appender in chapters.migrationFromLog4j
 

Classes in chapters.migrationFromLog4j that implement Appender
 class TrivialLogbackAppender
           
 



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