Class LoggingEventListener

  • All Implemented Interfaces:
    java.util.EventListener, org.apache.fop.events.EventListener

    public class LoggingEventListener
    extends java.lang.Object
    implements org.apache.fop.events.EventListener
    EventListener implementation that redirects events to Commons Logging. The events are converted to localized messages.
    • Constructor Summary

      Constructors 
      Constructor Description
      LoggingEventListener()
      Creates an instance logging to the default log category of this class.
      LoggingEventListener​(org.apache.commons.logging.Log log)
      Creates an instance logging to a given logger.
      LoggingEventListener​(org.apache.commons.logging.Log log, boolean skipFatal)
      Creates an instance logging to a given logger.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.apache.commons.logging.Log getLog()
      Returns the target logger for this instance.
      void processEvent​(org.apache.fop.events.Event event)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LoggingEventListener

        public LoggingEventListener()
        Creates an instance logging to the default log category of this class.
      • LoggingEventListener

        public LoggingEventListener​(org.apache.commons.logging.Log log)
        Creates an instance logging to a given logger. Events with fatal severity level will be skipped.
        Parameters:
        log - the target logger
      • LoggingEventListener

        public LoggingEventListener​(org.apache.commons.logging.Log log,
                                    boolean skipFatal)
        Creates an instance logging to a given logger.
        Parameters:
        log - the target logger
        skipFatal - true if events with fatal severity level should be skipped (i.e. not logged)
    • Method Detail

      • getLog

        public org.apache.commons.logging.Log getLog()
        Returns the target logger for this instance.
        Returns:
        the target logger
      • processEvent

        public void processEvent​(org.apache.fop.events.Event event)
        Specified by:
        processEvent in interface org.apache.fop.events.EventListener