Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 93654 invoked from network); 20 Oct 2010 11:07:50 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 20 Oct 2010 11:07:50 -0000 Received: (qmail 37645 invoked by uid 500); 20 Oct 2010 11:07:50 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 37574 invoked by uid 500); 20 Oct 2010 11:07:47 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 37567 invoked by uid 99); 20 Oct 2010 11:07:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Oct 2010 11:07:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Oct 2010 11:07:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5DC33238890A; Wed, 20 Oct 2010 11:06:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1025498 - in /db/derby/code/trunk/java/engine/org/apache/derby: impl/services/monitor/BaseMonitor.java loc/messages.xml Date: Wed, 20 Oct 2010 11:06:50 -0000 To: derby-commits@db.apache.org From: kahatlen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101020110650.5DC33238890A@eris.apache.org> Author: kahatlen Date: Wed Oct 20 11:06:49 2010 New Revision: 1025498 URL: http://svn.apache.org/viewvc?rev=1025498&view=rev Log: DERBY-4755: Add a space between the timestamp and the shutdown engine message Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java db/derby/code/trunk/java/engine/org/apache/derby/loc/messages.xml Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java?rev=1025498&r1=1025497&r2=1025498&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java Wed Oct 20 11:06:49 2010 @@ -110,7 +110,6 @@ abstract class BaseMonitor private HashMap serviceProviders = new HashMap(); private static final String LINE = "----------------------------------------------------------------"; - private final static char COLON = ':'; // Vector of class objects of implementations, found in the System, application // and default (modules.properties) properties @@ -170,9 +169,10 @@ abstract class BaseMonitor Monitor.getStream().println(LINE); //Make a note of Engine shutdown in the log file - Monitor.getStream().println(new Date() + + Monitor.getStream().println( MessageService.getTextMessage( - MessageId.CONN_SHUT_DOWN_ENGINE)); + MessageId.CONN_SHUT_DOWN_ENGINE, + new Date().toString())); if (SanityManager.DEBUG && reportOn) { report("Shutdown request"); Modified: db/derby/code/trunk/java/engine/org/apache/derby/loc/messages.xml URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/loc/messages.xml?rev=1025498&r1=1025497&r2=1025498&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/loc/messages.xml (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/loc/messages.xml Wed Oct 20 11:06:49 2010 @@ -7635,7 +7635,8 @@ Shutting down instance {0} on database d J003 - :Shutting down Derby Engine + {0}: Shutting down Derby Engine + timestamp