Index: FormatterFactory.java
===================================================================
RCS file: /home/cvspublic/jakarta-avalon-excalibur/src/java/org/apache/avalon/excalibur/logger/factory/FormatterFactory.java,v
retrieving revision 1.2
diff -r1.2 FormatterFactory.java
37c37,39
<             return new AvalonFormatter( format );
---
>             int depth = conf.getAttributeAsInteger( "depth", AvalonFormatter.DEFAULT_STACK_DEPTH );
>             boolean printCascading = conf.getAttributeAsBoolean( "cascading", AvalonFormatter.DEFAULT_PRINT_CASCADING );
>             return new AvalonFormatter( format, depth, printCascading );

