updated build to automate the process of copying configuration to Tomcat 5,

and also have it generate logging configuration with selectable logging
directory
This commit is contained in:
Eric J. Bowersox
2006-01-26 07:04:42 +00:00
parent 00952ef543
commit b4e49e8b29
6 changed files with 77 additions and 19 deletions

View File

@@ -13,7 +13,7 @@
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@users.sf.net>,
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
Copyright (C) 2001-2006 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
Contributor(s):
-->
@@ -21,7 +21,7 @@
<!-- Define the standard file appender. -->
<appender name="STDLOG" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="/home/erbo/venice.log"/>
<param name="File" value="@LOGDIR@/venice.log"/>
<param name="Append" value="true"/>
<param name="MaxFileSize" value="10MB"/>
<param name="MaxBackupIndex" value="5"/>
@@ -32,7 +32,7 @@
<!-- Define the memory logging appender. -->
<appender name="MEM" class="org.apache.log4j.FileAppender">
<param name="File" value="/home/erbo/venice.memory.log"/>
<param name="File" value="@LOGDIR@/venice.memory.log"/>
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d [%x] - %m%n"/>
</layout>