Update of /cvsroot/proxool/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv10054
Modified Files:
proxool-ant.properties build.xml
Log Message:
log4j simplification
Index: proxool-ant.properties
===================================================================
RCS file: /cvsroot/proxool/proxool/proxool-ant.properties,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** proxool-ant.properties 27 Feb 2003 18:03:44 -0000 1.8
--- proxool-ant.properties 27 Feb 2003 18:06:53 -0000 1.9
***************
*** 24,37 ****
# Path to Log4J configuration
! # Default behaviour is to write to stdout.
! #
! # 1. To run chainsaw, just run this command:
! # java -classpath path-to-log4j-jar org.apache.log4j.chainsaw.Main
! #
! # (replacing path-to-log4j-jar with the correct value, of course)
! #
! log4jPath=src/java-test/org/logicalcobwebs/proxool/log4j-chainsaw.xml
! #
! # 2. Or log to file (see lo4j-file.xml for destination)
! #
! # log4jPath=src/java-test/org/logicalcobwebs/proxool/log4j-file.xml
--- 24,28 ----
# Path to Log4J configuration
! # name: log4jPath
! # range: path to valid Log4J XML configuration file
! # default: src/java-test/org/logicalcobwebs/proxool/log4j-test.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/proxool/proxool/build.xml,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** build.xml 27 Feb 2003 18:03:44 -0000 1.33
--- build.xml 27 Feb 2003 18:06:53 -0000 1.34
***************
*** 31,39 ****
<!-- Log4J configuration to use for testing. See proxool-ant.properties
file for more infomation. -->
! <property name="log4jPath" value=""/>
!
! <!-- Log4J configuration to use for testing. See proxool-ant.properties
! file for more infomation. -->
! <property name="log4jTestPath" value="src/java-test/org/logicalcobwebs/proxool/log4j-test.xml"/>
<!-- Classpath -->
--- 31,35 ----
<!-- Log4J configuration to use for testing. See proxool-ant.properties
file for more infomation. -->
! <property name="log4jPath" value="src/java-test/org/logicalcobwebs/proxool/log4j-test.xml"/>
<!-- Classpath -->
***************
*** 289,293 ****
>
<java fork="yes" classpathref="source" classname="junit.textui.TestRunner" >
! <sysproperty key="log4jPath" value="${log4jTestPath}" />
<sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" />
<arg value="org.logicalcobwebs.proxool.GlobalTest" />
--- 285,289 ----
>
<java fork="yes" classpathref="source" classname="junit.textui.TestRunner" >
! <sysproperty key="log4jPath" value="${log4jPath}" />
<sysproperty key="script" value="src/java-test/org/logicalcobwebs/proxool/script.xml" />
<arg value="org.logicalcobwebs.proxool.GlobalTest" />
|