Class LoggingEventPatternConverter

    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected LoggingEventPatternConverter​(java.lang.String name, java.lang.String style)
      Constructs an instance of LoggingEventPatternConverter.
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      void format​(java.lang.Object obj, java.lang.StringBuffer output)
      Formats an object into a string buffer.
      abstract void format​(LoggingEvent event, java.lang.StringBuffer toAppendTo)
      Formats an event into a string buffer.
      boolean handlesThrowable()
      Normally pattern converters are not meant to handle Exceptions although few pattern converters might.
      • Methods inherited from class java.lang.Object

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

      • LoggingEventPatternConverter

        protected LoggingEventPatternConverter​(java.lang.String name,
                                               java.lang.String style)
        Constructs an instance of LoggingEventPatternConverter.
        Parameters:
        name - name of converter.
        style - CSS style for output.
    • Method Detail

      • format

        public abstract void format​(LoggingEvent event,
                                    java.lang.StringBuffer toAppendTo)
        Formats an event into a string buffer.
        Parameters:
        event - event to format, may not be null.
        toAppendTo - string buffer to which the formatted event will be appended. May not be null.
      • format

        public void format​(java.lang.Object obj,
                           java.lang.StringBuffer output)
        Formats an object into a string buffer.
        Specified by:
        format in class PatternConverter
        Parameters:
        obj - event to format, may not be null.
        output - string buffer to which the formatted event will be appended. May not be null.
      • handlesThrowable

        public boolean handlesThrowable()
        Normally pattern converters are not meant to handle Exceptions although few pattern converters might. By examining the return values for this method, the containing layout will determine whether it handles throwables or not.
        Returns:
        true if this PatternConverter handles throwables