org.apache.log.format
Class ExtendedPatternFormatter
java.lang.Object
org.apache.log.format.PatternFormatter
org.apache.log.format.ExtendedPatternFormatter
- All Implemented Interfaces:
- Formatter
- Direct Known Subclasses:
- AvalonFormatter
- public class ExtendedPatternFormatter
- extends PatternFormatter
Formatter especially designed for debugging applications.
This formatter extends the standard PatternFormatter to add
two new possible expansions. These expansions are %{method}
and %{thread}. In both cases the context map is first checked
for values with specified key. This is to facilitate passing
information about caller/thread when threads change (as in
AsyncLogTarget). They then attempt to determine appropriate
information dynamically.
- Version:
- $Id: ExtendedPatternFormatter.java 30977 2004-07-30 08:57:54Z niclas $
- Author:
- Avalon Development Team, Peter Donald
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ExtendedPatternFormatter
public ExtendedPatternFormatter(java.lang.String format)
- Creation of a new extended pattern formatter.
- Parameters:
format
- the format string
ExtendedPatternFormatter
public ExtendedPatternFormatter(java.lang.String format,
int callStackOffset)
- Creation of a new extended pattern formatter.
- Parameters:
format
- the format stringcallStackOffset
- the offset
getTypeIdFor
protected int getTypeIdFor(java.lang.String type)
- Retrieve the type-id for a particular string.
- Overrides:
getTypeIdFor
in class PatternFormatter
- Parameters:
type
- the string
- Returns:
- the type-id
formatPatternRun
protected java.lang.String formatPatternRun(LogEvent event,
PatternFormatter.PatternRun run)
- Formats a single pattern run (can be extended in subclasses).
- Overrides:
formatPatternRun
in class PatternFormatter
- Parameters:
event
- the log eventrun
- the pattern run to format.
- Returns:
- the formatted result.
Copyright © 1997-2005 The Apache Software Foundation. All Rights Reserved.