|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.db | The classes in this package and sub packages provide appenders for various types of databases and methods for accessing databases. |
org.apache.logging.log4j.core.appender.db.jdbc | The JDBC Appender supports writing log events to a relational database using standard JDBC connections. |
org.apache.logging.log4j.core.appender.db.jpa | The JPA Appender supports writing log events to a relational database using the Java Persistence API. |
org.apache.logging.log4j.core.appender.db.nosql | The NoSQL Appender supports writing log events to NoSQL databases. |
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. |
org.apache.logging.log4j.core.jmx | Log4j 2.0 JMX support. |
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 |
AbstractAppender
Abstract base class for Appenders. |
class |
AbstractOutputStreamAppender
Appends log events as bytes to a byte output stream. |
class |
AsyncAppender
Appends 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 |
RandomAccessFileAppender
File Appender. |
class |
RollingFileAppender
An appender that writes to files and can roll over at intervals. |
class |
RollingRandomAccessFileAppender
An appender that writes to random access files and can roll over at intervals. |
class |
SMTPAppender
Send an e-mail when a specific logging event occurs, typically on errors or fatal errors. |
class |
SocketAppender
An Appender that delivers events over socket connections. |
class |
SyslogAppender
The Syslog Appender. |
class |
TLSSyslogAppender
Secure 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.db |
---|
Classes in org.apache.logging.log4j.core.appender.db that implement Appender | |
---|---|
class |
AbstractDatabaseAppender<T extends AbstractDatabaseManager>
An abstract Appender for writing events to a database of some type, be it relational or NoSQL. |
Uses of Appender in org.apache.logging.log4j.core.appender.db.jdbc |
---|
Classes in org.apache.logging.log4j.core.appender.db.jdbc that implement Appender | |
---|---|
class |
JDBCAppender
This Appender writes logging events to a relational database using standard JDBC mechanisms. |
Uses of Appender in org.apache.logging.log4j.core.appender.db.jpa |
---|
Classes in org.apache.logging.log4j.core.appender.db.jpa that implement Appender | |
---|---|
class |
JPAAppender
This Appender writes logging events to a relational database using the Java Persistence API. |
Uses of Appender in org.apache.logging.log4j.core.appender.db.nosql |
---|
Classes in org.apache.logging.log4j.core.appender.db.nosql that implement Appender | |
---|---|
class |
NoSQLAppender
This Appender writes logging events to a NoSQL database using a configured NoSQL provider. |
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()
Returns the Appender. |
Appender |
BaseConfiguration.getAppender(String name)
Returns 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()
Returns all Appenders as a Map. |
Map<String,Appender> |
Configuration.getAppenders()
Returns a Map containing all the Appenders and their name. |
Map<String,Appender> |
BaseConfiguration.getAppenders()
Returns 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)
Adds 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. |
Uses of Appender in org.apache.logging.log4j.core.jmx |
---|
Constructors in org.apache.logging.log4j.core.jmx with parameters of type Appender | |
---|---|
AppenderAdmin(String contextName,
Appender appender)
Constructs a new AppenderAdmin with the specified contextName
and appender. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1999-2013 Apache Software Foundation. All Rights Reserved.
Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, and the Apache Log4j logo are trademarks of The Apache Software Foundation.