Package org.codelibs.fess.util
Class LogNotificationAppender
java.lang.Object
org.apache.logging.log4j.core.AbstractLifeCycle
org.apache.logging.log4j.core.filter.AbstractFilterable
org.apache.logging.log4j.core.appender.AbstractAppender
org.codelibs.fess.util.LogNotificationAppender
- All Implemented Interfaces:
org.apache.logging.log4j.core.Appender,org.apache.logging.log4j.core.filter.Filterable,org.apache.logging.log4j.core.impl.LocationAware,org.apache.logging.log4j.core.LifeCycle,org.apache.logging.log4j.core.LifeCycle2
@Plugin(name="LogNotificationAppender",
category="Core",
elementType="appender",
printObject=true)
public class LogNotificationAppender
extends org.apache.logging.log4j.core.appender.AbstractAppender
Custom Log4j2 Appender that captures log events into a buffer for notification purposes.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.logging.log4j.core.appender.AbstractAppender
org.apache.logging.log4j.core.appender.AbstractAppender.Builder<B extends org.apache.logging.log4j.core.appender.AbstractAppender.Builder<B>>Nested classes/interfaces inherited from interface org.apache.logging.log4j.core.LifeCycle
org.apache.logging.log4j.core.LifeCycle.State -
Field Summary
Fields inherited from class org.apache.logging.log4j.core.AbstractLifeCycle
DEFAULT_STOP_TIMEOUT, DEFAULT_STOP_TIMEUNIT, LOGGERFields inherited from interface org.apache.logging.log4j.core.Appender
ELEMENT_TYPE, EMPTY_ARRAY -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedLogNotificationAppender(String name, org.apache.logging.log4j.core.Filter filter, org.apache.logging.log4j.core.Layout<? extends Serializable> layout, boolean ignoreExceptions, org.apache.logging.log4j.core.config.Property[] properties, org.apache.logging.log4j.Level minLevel) Constructs a new LogNotificationAppender. -
Method Summary
Modifier and TypeMethodDescriptionvoidappend(org.apache.logging.log4j.core.LogEvent event) static LogNotificationAppendercreateAppender(String name, String minLevel, org.apache.logging.log4j.core.Filter filter, org.apache.logging.log4j.core.Layout<? extends Serializable> layout) Factory method to create a LogNotificationAppender instance.Methods inherited from class org.apache.logging.log4j.core.appender.AbstractAppender
error, error, error, getHandler, getLayout, getName, ignoreExceptions, parseInt, requiresLocation, setHandler, toSerializable, toStringMethods inherited from class org.apache.logging.log4j.core.filter.AbstractFilterable
addFilter, getFilter, getPropertyArray, hasFilter, isFiltered, removeFilter, start, stop, stopMethods inherited from class org.apache.logging.log4j.core.AbstractLifeCycle
equalsImpl, getState, getStatusLogger, hashCodeImpl, initialize, isInitialized, isStarted, isStarting, isStopped, isStopping, setStarted, setStarting, setState, setStopped, setStopping, stop, stopMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.logging.log4j.core.LifeCycle
getState, initialize, isStarted, isStopped, start, stop
-
Constructor Details
-
LogNotificationAppender
protected LogNotificationAppender(String name, org.apache.logging.log4j.core.Filter filter, org.apache.logging.log4j.core.Layout<? extends Serializable> layout, boolean ignoreExceptions, org.apache.logging.log4j.core.config.Property[] properties, org.apache.logging.log4j.Level minLevel) Constructs a new LogNotificationAppender.- Parameters:
name- the appender namefilter- the filter to applylayout- the layout to useignoreExceptions- whether to ignore exceptionsproperties- the appender propertiesminLevel- the minimum log level to capture
-
-
Method Details
-
append
public void append(org.apache.logging.log4j.core.LogEvent event) -
createAppender
@PluginFactory public static LogNotificationAppender createAppender(@PluginAttribute("name") String name, @PluginAttribute(value="minLevel",defaultString="ERROR") String minLevel, @PluginElement("Filter") org.apache.logging.log4j.core.Filter filter, @PluginElement("Layout") org.apache.logging.log4j.core.Layout<? extends Serializable> layout) Factory method to create a LogNotificationAppender instance.- Parameters:
name- the appender nameminLevel- the minimum log level string (defaults to ERROR)filter- the filter to applylayout- the layout to use- Returns:
- a new LogNotificationAppender instance, or null if name is null
-