You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2006/04/09 16:47:12 UTC

svn commit: r392741 - in /directory/branches/apacheds/1.0/server-main: apacheds.sh log4j.properties

Author: elecharny
Date: Sun Apr  9 07:47:10 2006
New Revision: 392741

URL: http://svn.apache.org/viewcvs?rev=392741&view=rev
Log:
Modified the file to be able to launch the server with the good jar (1.0-RC2-SNAPSHOT)

Modified:
    directory/branches/apacheds/1.0/server-main/apacheds.sh
    directory/branches/apacheds/1.0/server-main/log4j.properties

Modified: directory/branches/apacheds/1.0/server-main/apacheds.sh
URL: http://svn.apache.org/viewcvs/directory/branches/apacheds/1.0/server-main/apacheds.sh?rev=392741&r1=392740&r2=392741&view=diff
==============================================================================
--- directory/branches/apacheds/1.0/server-main/apacheds.sh (original)
+++ directory/branches/apacheds/1.0/server-main/apacheds.sh Sun Apr  9 07:47:10 2006
@@ -1,9 +1,9 @@
 #!/bin/sh
-if [ -e target/apacheds-server-main-1.0-RC1-app.jar ] ; then
+if [ -e target/apacheds-server-main-1.0-RC2-SNAPSHOT-app.jar ] ; then
   echo uber jar exists
 else
   echo uber jar not found need to build it
   mvn clean assembly:assembly
 fi
 
-java -Dlog4j.configuration=file://$(pwd)/log4j.properties -jar target/apacheds-server-main-1.0-RC1-app.jar server.xml 
+java -Dlog4j.configuration=file://$(pwd)/log4j.properties -jar target/apacheds-server-main-1.0-RC2-SNAPSHOT-app.jar server.xml

Modified: directory/branches/apacheds/1.0/server-main/log4j.properties
URL: http://svn.apache.org/viewcvs/directory/branches/apacheds/1.0/server-main/log4j.properties?rev=392741&r1=392740&r2=392741&view=diff
==============================================================================
--- directory/branches/apacheds/1.0/server-main/log4j.properties (original)
+++ directory/branches/apacheds/1.0/server-main/log4j.properties Sun Apr  9 07:47:10 2006
@@ -1,8 +1,8 @@
-log4j.rootCategory=WARN, stdout
+log4j.rootCategory=INFO, stdout
 
 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n
+log4j.appender.stdout.layout.ConversionPattern=%r [%p] [%c] - %m%n
 
 # with these we'll not get innundated when switching to DEBUG
 log4j.logger.org.apache.directory.shared.ldap.name=WARN