org.apache.avalon.framework.logger
Class AvalonFormatter

java.lang.Object
  extended byorg.apache.log.format.PatternFormatter
      extended byorg.apache.log.format.ExtendedPatternFormatter
          extended byorg.apache.avalon.framework.logger.AvalonFormatter
All Implemented Interfaces:
Formatter

public class AvalonFormatter
extends ExtendedPatternFormatter

This formatter extends ExtendedPatternFormatter so that CascadingExceptions are formatted with all nested exceptions.

Version:
$Id: AvalonFormatter.java 30977 2004-07-30 08:57:54Z niclas $
Author:
Avalon Development Team

Nested Class Summary
 
Nested classes inherited from class org.apache.log.format.PatternFormatter
PatternFormatter.PatternRun
 
Field Summary
static boolean DEFAULT_PRINT_CASCADING
          The constant defining the default behaviour for printing nested exceptions.
static int DEFAULT_STACK_DEPTH
          The constant defining the default stack depth when none other is specified.
 
Fields inherited from class org.apache.log.format.PatternFormatter
MAX_TYPE
 
Constructor Summary
AvalonFormatter(java.lang.String pattern)
          Construct the formatter with the specified pattern and which which prints out exceptions to stackDepth of 8.
AvalonFormatter(java.lang.String pattern, int stackDepth, boolean printCascading)
          Construct the formatter with the specified pattern and which which prints out exceptions to stackDepth specified.
 
Method Summary
protected  java.lang.String formatPatternRun(LogEvent event, PatternFormatter.PatternRun run)
          Return the result of formaltting a pattern run.
protected  java.lang.String getStackTrace(java.lang.Throwable throwable, java.lang.String format)
          Utility method to format stack trace.
protected  int getTypeIdFor(java.lang.String type)
          Retrieve the type-id for a particular string.
 
Methods inherited from class org.apache.log.format.PatternFormatter
format, getCategory, getContextMap, getMessage, getPriority, getRTime, getThread, getTime, parse
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT_STACK_DEPTH

public static final int DEFAULT_STACK_DEPTH
The constant defining the default stack depth when none other is specified.

Since:
4.1.2
See Also:
Constant Field Values

DEFAULT_PRINT_CASCADING

public static final boolean DEFAULT_PRINT_CASCADING
The constant defining the default behaviour for printing nested exceptions.

Since:
4.1.2
See Also:
Constant Field Values
Constructor Detail

AvalonFormatter

public AvalonFormatter(java.lang.String pattern)
Construct the formatter with the specified pattern and which which prints out exceptions to stackDepth of 8.

Parameters:
pattern - The pattern to use to format the log entries
Since:
4.1

AvalonFormatter

public AvalonFormatter(java.lang.String pattern,
                       int stackDepth,
                       boolean printCascading)
Construct the formatter with the specified pattern and which which prints out exceptions to stackDepth specified.

Parameters:
pattern - The pattern to use to format the log entries
stackDepth - The depth to which stacktraces are printed out
printCascading - true enables printing of nested exceptions, false only prints out the outermost exception
Since:
4.1.2
Method Detail

getStackTrace

protected java.lang.String getStackTrace(java.lang.Throwable throwable,
                                         java.lang.String format)
Utility method to format stack trace.

Overrides:
getStackTrace in class PatternFormatter
Parameters:
throwable - the throwable instance
format - ancilliary format parameter - allowed to be null
Returns:
the formatted string

getTypeIdFor

protected int getTypeIdFor(java.lang.String type)
Retrieve the type-id for a particular string.

Overrides:
getTypeIdFor in class ExtendedPatternFormatter
Parameters:
type - the string
Returns:
the type-id

formatPatternRun

protected java.lang.String formatPatternRun(LogEvent event,
                                            PatternFormatter.PatternRun run)
Return the result of formaltting a pattern run.

Overrides:
formatPatternRun in class ExtendedPatternFormatter
Parameters:
event - the log event
run - the patter formatter pattern run
Returns:
the formatted string


Copyright © 1997-2005 The Apache Software Foundation. All Rights Reserved.