Class LineLocationPatternConverter
- java.lang.Object
-
- org.apache.logging.log4j.core.pattern.AbstractPatternConverter
-
- org.apache.logging.log4j.core.pattern.LogEventPatternConverter
-
- org.apache.logging.log4j.core.pattern.LineLocationPatternConverter
-
- All Implemented Interfaces:
LocationAware
,PatternConverter
@Plugin(name="LineLocationPatternConverter", category="Converter") public final class LineLocationPatternConverter extends LogEventPatternConverter implements LocationAware
Returns the event's line location information in a StringBuilder.
-
-
Field Summary
-
Fields inherited from class org.apache.logging.log4j.core.pattern.AbstractPatternConverter
LOGGER
-
Fields inherited from interface org.apache.logging.log4j.core.pattern.PatternConverter
CATEGORY
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
format(LogEvent event, StringBuilder output)
Formats an event into a string buffer.static LineLocationPatternConverter
newInstance(String[] options)
Obtains an instance of pattern converter.boolean
requiresLocation()
-
Methods inherited from class org.apache.logging.log4j.core.pattern.LogEventPatternConverter
format, handlesThrowable, isVariable
-
Methods inherited from class org.apache.logging.log4j.core.pattern.AbstractPatternConverter
getName, getStyleClass
-
-
-
-
Method Detail
-
newInstance
public static LineLocationPatternConverter newInstance(String[] options)
Obtains an instance of pattern converter.- Parameters:
options
- options, may be null.- Returns:
- instance of pattern converter.
-
format
public void format(LogEvent event, StringBuilder output)
Formats an event into a string buffer.- Specified by:
format
in classLogEventPatternConverter
- Parameters:
event
- event to format, may not be null.output
- string buffer to which the formatted event will be appended. May not be null.
-
requiresLocation
public boolean requiresLocation()
- Specified by:
requiresLocation
in interfaceLocationAware
-
-