38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<!--
|
|
Copyright (C) 2004 Orbeon, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
GNU Lesser General Public License as published by the Free Software Foundation; either version
|
|
2.1 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the GNU Lesser General Public License for more details.
|
|
|
|
The full text of the license is available at http://www.gnu.org/copyleft/lesser.html
|
|
-->
|
|
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" xmlns="http://jakarta.apache.org/log4j/">
|
|
|
|
<!-- This is the standard log appender to the console (System.out) -->
|
|
<appender name="ConsoleAppender" class="org.apache.log4j.ConsoleAppender">
|
|
<param name="Target" value="System.err"/>
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
<param name="ConversionPattern" value="%d{ISO8601} %-5p %c %x - %m%n"/>
|
|
</layout>
|
|
<filter class="org.apache.log4j.varia.LevelRangeFilter">
|
|
<param name="LevelMin" value="INFO"/>
|
|
</filter>
|
|
</appender>
|
|
<!-- XForms engine activity -->
|
|
<category name="org.orbeon.oxf.xforms.processor.XFormsServer">
|
|
<priority value="debug"/>
|
|
</category>
|
|
|
|
<!-- This is the root logger -->
|
|
<root>
|
|
<priority value="debug"/>
|
|
<appender-ref ref="ConsoleAppender"/>
|
|
</root>
|
|
|
|
</log4j:configuration>
|