Uses of Interface
org.apache.logging.log4j.core.Appender

Packages that use Appender
org.apache.logging.log4j.core Implementation of Log4j 2.0. 
org.apache.logging.log4j.core.appender Log4j 2.0 Appenders. 
org.apache.logging.log4j.core.appender.rewrite Apache Flume Appender. 
org.apache.logging.log4j.core.appender.routing Apache Flume Appender. 
org.apache.logging.log4j.core.config Configuration of Log4j 2.0. 
org.apache.logging.log4j.core.config.plugins Configuration of Log4j 2.0 via Plugins. 
 

Uses of Appender in org.apache.logging.log4j.core
 

Methods in org.apache.logging.log4j.core that return types with arguments of type Appender
 Map<String,Appender> Logger.getAppenders()
          This method is not exposed through the public API and is used primarily for unit testing.
 

Methods in org.apache.logging.log4j.core with parameters of type Appender
 void Logger.addAppender(Appender appender)
          This method is not exposed through the public API and is used primarily for unit testing.
 void Logger.removeAppender(Appender appender)
          This method is not exposed through the public API and is used primarily for unit testing.
 

Uses of Appender in org.apache.logging.log4j.core.appender
 

Classes in org.apache.logging.log4j.core.appender that implement Appender
 class AppenderBase
          Base class for Appenders.
 class AsynchAppender
          Appender to write to one or more Appenders asynchronously.
 class ConsoleAppender
          ConsoleAppender appends log events to System.out or System.err using a layout specified by the user.
 class FailoverAppender
          The FailoverAppender will capture exceptions in an Appender and then route the event to a different appender.
 class FileAppender
          File Appender.
 class JMSQueueAppender
          Appender to write to a JMS Queue.
 class JMSTopicAppender
          Appender to write to a JMS Topic.
 class OutputStreamAppender
          Writes the byte output stream.
 class RollingFileAppender
          An appender that writes to files andd can roll over at intervals.
 class SocketAppender
          An Appender that delivers events over socket connections.
 class SyslogAppender
          The Syslog Appender.
 

Constructors in org.apache.logging.log4j.core.appender with parameters of type Appender
DefaultErrorHandler(Appender appender)
           
 

Uses of Appender in org.apache.logging.log4j.core.appender.rewrite
 

Classes in org.apache.logging.log4j.core.appender.rewrite that implement Appender
 class RewriteAppender
          This Appender allows the logging event to be manipulated before it is processed by other Appenders.
 

Uses of Appender in org.apache.logging.log4j.core.appender.routing
 

Classes in org.apache.logging.log4j.core.appender.routing that implement Appender
 class RoutingAppender
          This Appender "routes" between various Appenders, some of which can be references to Appenders defined earlier in the configuration while others can be dynamically created within this Appender as required.
 

Uses of Appender in org.apache.logging.log4j.core.config
 

Methods in org.apache.logging.log4j.core.config that return Appender
 Appender AppenderControl.getAppender()
          Return the Appender.
 Appender BaseConfiguration.getAppender(String name)
          Return the Appender with the specified name.
 

Methods in org.apache.logging.log4j.core.config that return types with arguments of type Appender
 Map<String,Appender> LoggerConfig.getAppenders()
          Return all Appenders as a Map.
 Map<String,Appender> Configuration.getAppenders()
          Return a Map containing all the Appenders and their name.
 Map<String,Appender> BaseConfiguration.getAppenders()
          Return a Map containing all the Appenders and their name.
 

Methods in org.apache.logging.log4j.core.config with parameters of type Appender
 void BaseConfiguration.addAppender(Appender appender)
          Adds an Appender to the configuration.
 void LoggerConfig.addAppender(Appender appender, Level level, Filter filter)
          Add an Appender to the LoggerConfig.
 void Configuration.addLoggerAppender(Logger logger, Appender appender)
           
 void BaseConfiguration.addLoggerAppender(Logger logger, Appender appender)
          Associates an Appender with a LoggerConfig.
 

Constructors in org.apache.logging.log4j.core.config with parameters of type Appender
AppenderControl(Appender appender, Level level, Filter filter)
          Constructor.
 

Uses of Appender in org.apache.logging.log4j.core.config.plugins
 

Methods in org.apache.logging.log4j.core.config.plugins that return types with arguments of type Appender
static ConcurrentMap<String,Appender> AppendersPlugin.createAppenders(Appender[] appenders)
          Create a Map of the Appenders.
 

Methods in org.apache.logging.log4j.core.config.plugins with parameters of type Appender
static ConcurrentMap<String,Appender> AppendersPlugin.createAppenders(Appender[] appenders)
          Create a Map of the Appenders.
 



Copyright © 1999-2012 Apache Software Foundation. All Rights Reserved.