2003-05-19 21:25:31 -06:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
|
|
|
<!--
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version 1.1
|
|
|
|
(the "License"); you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
|
|
|
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
|
|
|
language governing rights and limitations under the License.
|
|
|
|
|
|
|
|
The Original Code is the Venice Web Communities System.
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
|
|
|
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
2003-05-19 22:22:30 -06:00
|
|
|
Copyright (C) 2001-03 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
2003-05-19 21:25:31 -06:00
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
-->
|
|
|
|
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
|
|
|
|
|
|
|
|
<!-- Define the standard file appender. -->
|
|
|
|
<appender name="STDLOG" class="org.apache.log4j.RollingFileAppender">
|
2003-05-19 22:22:30 -06:00
|
|
|
<param name="File" value="@LOGDIR@/venice.log"/>
|
2003-05-19 21:25:31 -06:00
|
|
|
<param name="Append" value="true"/>
|
|
|
|
<param name="MaxFileSize" value="10MB"/>
|
|
|
|
<param name="MaxBackupIndex" value="5"/>
|
|
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
|
|
<param name="ConversionPattern" value="%d %-5p %c{2} [%t %x] - %m%n"/>
|
|
|
|
</layout>
|
|
|
|
</appender>
|
|
|
|
|
|
|
|
<!-- Define the root configuration for logging. -->
|
|
|
|
<root>
|
|
|
|
<priority value="debug"/>
|
|
|
|
<appender-ref ref="STDLOG"/>
|
|
|
|
</root>
|
|
|
|
|
|
|
|
</log4j:configuration>
|