Class AbstractStyleNameConverter

All Implemented Interfaces:
PatternConverter
Direct Known Subclasses:
AbstractStyleNameConverter.Black, AbstractStyleNameConverter.Blue, AbstractStyleNameConverter.Cyan, AbstractStyleNameConverter.Green, AbstractStyleNameConverter.Magenta, AbstractStyleNameConverter.Red, AbstractStyleNameConverter.White, AbstractStyleNameConverter.Yellow

public abstract class AbstractStyleNameConverter extends LogEventPatternConverter
Style pattern converter. Adds ANSI color styling to the result of the enclosed pattern.
  • Constructor Details

    • AbstractStyleNameConverter

      protected AbstractStyleNameConverter(String name, List<PatternFormatter> formatters, String styling)
      Constructs the converter.
      Parameters:
      formatters - The PatternFormatters to generate the text to manipulate.
      styling - The styling that should encapsulate the pattern.
  • Method Details

    • newInstance

      protected static <T extends AbstractStyleNameConverter> T newInstance(Class<T> asnConverterClass, String name, Configuration config, String[] options)
      Gets an instance of the class (called via reflection).
      Parameters:
      config - The current Configuration.
      options - The pattern options, may be null. If the first element is "short", only the first line of the throwable will be formatted.
      Returns:
      new instance of class or null
    • format

      public void format(LogEvent event, StringBuilder toAppendTo)
      Formats an event into a string buffer.
      Specified by:
      format in class LogEventPatternConverter
      Parameters:
      event - event to format, may not be null.
      toAppendTo - string buffer to which the formatted event will be appended. May not be null.
    • handlesThrowable

      public boolean handlesThrowable()
      Description copied from class: LogEventPatternConverter
      Tests whether this pattern converter is renders a Throwable.

      The PatternParser checks this flag when processing the alwaysWriteExceptions option: if no converter in the pattern handles throwables, the parser automatically appends a converter to ensure exceptions are still written.

      Overrides:
      handlesThrowable in class LogEventPatternConverter
      Returns:
      true if this converter consumes and renders a Throwable, false otherwise