From commits-return-8895-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Sun Apr 09 14:47:36 2006 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 82866 invoked from network); 9 Apr 2006 14:47:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Apr 2006 14:47:35 -0000 Received: (qmail 34635 invoked by uid 500); 9 Apr 2006 14:47:35 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 34588 invoked by uid 500); 9 Apr 2006 14:47:34 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 34577 invoked by uid 99); 9 Apr 2006 14:47:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Apr 2006 07:47:34 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 09 Apr 2006 07:47:33 -0700 Received: (qmail 82804 invoked by uid 65534); 9 Apr 2006 14:47:13 -0000 Message-ID: <20060409144713.82803.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r392741 - in /directory/branches/apacheds/1.0/server-main: apacheds.sh log4j.properties Date: Sun, 09 Apr 2006 14:47:12 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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