Class PaxOsgiAppender

  • 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="PaxOsgi",
            category="Core",
            elementType="appender",
            printObject=true)
    public class PaxOsgiAppender
    extends org.apache.logging.log4j.core.appender.AbstractAppender
    This is a Log4J2 appender that forwards log messages to any services registered with OSGi with the interface PaxAppender. That list of appender services is possibly filtered by the filter setting.
    • 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, LOGGER
      • Fields inherited from interface org.apache.logging.log4j.core.Appender

        ELEMENT_TYPE, EMPTY_ARRAY
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void append​(org.apache.logging.log4j.core.LogEvent event)  
      static PaxOsgiAppender createAppender​(String name, String filter, org.apache.logging.log4j.core.config.Configuration config)
      Create a Pax Osgi Appender.
      void start()  
      void stop()  
      • Methods inherited from class org.apache.logging.log4j.core.appender.AbstractAppender

        error, error, error, getHandler, getLayout, getName, ignoreExceptions, parseInt, requiresLocation, setHandler, toSerializable, toString
      • Methods inherited from class org.apache.logging.log4j.core.filter.AbstractFilterable

        addFilter, getFilter, getPropertyArray, hasFilter, isFiltered, removeFilter, stop, stop
      • Methods 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
      • Methods inherited from interface org.apache.logging.log4j.core.LifeCycle

        getState, initialize, isStarted, isStopped
    • Constructor Detail

      • PaxOsgiAppender

        public PaxOsgiAppender​(String name,
                               String filter)
    • Method Detail

      • createAppender

        @PluginFactory
        public static PaxOsgiAppender createAppender​(@PluginAttribute("name")
                                                     String name,
                                                     @PluginAttribute("filter")
                                                     String filter,
                                                     @PluginConfiguration
                                                     org.apache.logging.log4j.core.config.Configuration config)
        Create a Pax Osgi Appender.
        Parameters:
        name - The name of the Appender.
        filter - defaults to "*", can be any string that works as a value in Filter
        config - The Configuration
        Returns:
        The FileAppender.
      • start

        public void start()
        Specified by:
        start in interface org.apache.logging.log4j.core.LifeCycle
        Overrides:
        start in class org.apache.logging.log4j.core.filter.AbstractFilterable
      • stop

        public void stop()
        Specified by:
        stop in interface org.apache.logging.log4j.core.LifeCycle
        Overrides:
        stop in class org.apache.logging.log4j.core.AbstractLifeCycle
      • append

        public void append​(org.apache.logging.log4j.core.LogEvent event)