2001-01-31 13:48:40 -07:00
|
|
|
<?xml version="1.0"?>
|
2001-10-22 16:11:58 -06:00
|
|
|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
2001-01-31 13:48:40 -07:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
|
2001-04-04 23:12:20 -06:00
|
|
|
The Original Code is the Venice Web Communities System.
|
2001-01-31 13:48:40 -07:00
|
|
|
|
2006-01-25 21:40:34 -07:00
|
|
|
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@users.sf.net>,
|
2001-01-31 13:48:40 -07:00
|
|
|
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
|
|
|
Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
-->
|
2001-10-22 16:11:58 -06:00
|
|
|
<log4j:configuration>
|
2001-01-31 13:48:40 -07:00
|
|
|
|
|
|
|
<!-- Define the standard file appender. -->
|
2001-04-18 00:01:45 -06:00
|
|
|
<appender name="STDLOG" class="org.apache.log4j.RollingFileAppender">
|
2001-01-31 13:48:40 -07:00
|
|
|
<param name="File" value="/home/erbo/venice.log"/>
|
2001-04-18 00:01:45 -06:00
|
|
|
<param name="Append" value="true"/>
|
|
|
|
<param name="MaxFileSize" value="10MB"/>
|
|
|
|
<param name="MaxBackupIndex" value="5"/>
|
2001-01-31 13:48:40 -07:00
|
|
|
<layout class="org.apache.log4j.PatternLayout">
|
2001-04-18 00:01:45 -06:00
|
|
|
<param name="ConversionPattern" value="%d %-5p %c{2} [%t %x] - %m%n"/>
|
2001-01-31 13:48:40 -07:00
|
|
|
</layout>
|
|
|
|
</appender>
|
|
|
|
|
2004-05-02 17:42:18 -06:00
|
|
|
<!-- Define the memory logging appender. -->
|
|
|
|
<appender name="MEM" class="org.apache.log4j.FileAppender">
|
|
|
|
<param name="File" value="/home/erbo/venice.memory.log"/>
|
|
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
|
|
<param name="ConversionPattern" value="%d [%x] - %m%n"/>
|
|
|
|
</layout>
|
|
|
|
</appender>
|
|
|
|
|
2001-04-04 23:12:20 -06:00
|
|
|
<!-- Turn down the standard detail in some areas -->
|
|
|
|
<category name="com.silverwrist.util.ServletMultipartHandler">
|
2001-04-18 00:01:45 -06:00
|
|
|
<priority value="debug"/>
|
2001-04-04 23:12:20 -06:00
|
|
|
</category>
|
|
|
|
<category name="com.silverwrist.venice.htmlcheck">
|
|
|
|
<priority value="fatal"/>
|
|
|
|
</category>
|
|
|
|
|
2004-05-02 17:42:18 -06:00
|
|
|
<category name="MEMLOG" additivity="false">
|
|
|
|
<priority value="info"/>
|
|
|
|
<appender-ref ref="MEM"/>
|
|
|
|
</category>
|
|
|
|
|
2002-01-06 19:05:37 -07:00
|
|
|
<!-- Define the root configuration for logging. -->
|
|
|
|
<root>
|
|
|
|
<priority value="debug"/>
|
|
|
|
<appender-ref ref="STDLOG"/>
|
|
|
|
</root>
|
|
|
|
|
2001-10-22 16:11:58 -06:00
|
|
|
</log4j:configuration>
|