You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ma...@apache.org on 2010/07/23 21:01:44 UTC

svn commit: r967201 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java

Author: mamta
Date: Fri Jul 23 19:01:43 2010
New Revision: 967201

URL: http://svn.apache.org/viewvc?rev=967201&view=rev
Log:
DERBY-4601 Shutting down just a single database should log a different message than shutting down the system

By mistake, I was printing the timestamp twice. This simple change fixes that.


Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java

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=967201&r1=967200&r2=967201&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 Fri Jul 23 19:01:43 2010
@@ -181,7 +181,7 @@ abstract class BaseMonitor
 		}
 		long shutdownTime = System.currentTimeMillis();
 		//Make a note of Engine shutdown in the log file
-		Monitor.getStream().printlnWithHeader("\n" + CheapDateFormatter.formatDate(shutdownTime) +
+		Monitor.getStream().printlnWithHeader("\n" +
 				COLON +
                 MessageService.getTextMessage(
                     MessageId.CONN_SHUT_DOWN_ENGINE));