[Swift-commit] r6024 - trunk/src/org/griphyn/vdl/karajan/lib

hategan at ci.uchicago.edu hategan at ci.uchicago.edu
Fri Nov 9 23:56:59 CST 2012


Author: hategan
Date: 2012-11-09 23:56:59 -0600 (Fri, 09 Nov 2012)
New Revision: 6024

Modified:
   trunk/src/org/griphyn/vdl/karajan/lib/Tracer.java
Log:
removed trace output to console

Modified: trunk/src/org/griphyn/vdl/karajan/lib/Tracer.java
===================================================================
--- trunk/src/org/griphyn/vdl/karajan/lib/Tracer.java	2012-11-10 05:43:55 UTC (rev 6023)
+++ trunk/src/org/griphyn/vdl/karajan/lib/Tracer.java	2012-11-10 05:56:59 UTC (rev 6024)
@@ -140,7 +140,6 @@
     public void trace(String thread, Object msg) {
         String str = source + ", thread " + thread + ", " + msg;
         logger.info(str);
-        System.out.println(str);
     }
     
     public void trace(String thread, String name, String line, Object msg) {
@@ -149,7 +148,6 @@
         }
         String str = name + ", line " + line + ", thread " + thread + ", "+ msg;
         logger.info(str);
-        System.out.println(str);
     }
     
     public void trace(String thread, String line, Object msg) {
@@ -158,12 +156,10 @@
         }
         String str = source + ", line " + line + ", thread " + thread + ", " + msg;
         logger.info(str);
-        System.out.println(str);
     }
     
     public void trace(String thread) {
         logger.info(source + ", thread " + thread);
-        System.out.println(source + ", thread " + thread);
     }
     
     private static Tracer disabledTracer, enabledTracer;




More information about the Swift-commit mailing list