You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by br...@apache.org on 2013/08/22 11:55:08 UTC

svn commit: r1516401 - /ace/trunk/org.apache.ace.agent/src/org/apache/ace/agent/impl/Activator.java

Author: bramk
Date: Thu Aug 22 09:55:08 2013
New Revision: 1516401

URL: http://svn.apache.org/r1516401
Log:
ACE-347 Removed date from log format

Modified:
    ace/trunk/org.apache.ace.agent/src/org/apache/ace/agent/impl/Activator.java

Modified: ace/trunk/org.apache.ace.agent/src/org/apache/ace/agent/impl/Activator.java
URL: http://svn.apache.org/viewvc/ace/trunk/org.apache.ace.agent/src/org/apache/ace/agent/impl/Activator.java?rev=1516401&r1=1516400&r2=1516401&view=diff
==============================================================================
--- ace/trunk/org.apache.ace.agent/src/org/apache/ace/agent/impl/Activator.java (original)
+++ ace/trunk/org.apache.ace.agent/src/org/apache/ace/agent/impl/Activator.java Thu Aug 22 09:55:08 2013
@@ -298,7 +298,7 @@ public class Activator extends Dependenc
         private void log(String level, String component, String message, Throwable exception, Object... args) {
             if (args.length > 0)
                 message = String.format(message, args);
-            String line = String.format("[%s] %Tc (%s) %s", level, new Date(), component, message);
+            String line = String.format("[%s] %TT (%s) %s", level, new Date(), component, message);
             System.out.println(line);
             if (exception != null)
                 exception.printStackTrace(System.out);