diff --git a/core/java/src/net/i2p/util/SimpleTimer2.java b/core/java/src/net/i2p/util/SimpleTimer2.java
index cf2c764d62bd0945888a16428065f833c6f870be..3f54a524b097c4a4c11c8468a3e4c07b00b57d75 100644
--- a/core/java/src/net/i2p/util/SimpleTimer2.java
+++ b/core/java/src/net/i2p/util/SimpleTimer2.java
@@ -136,10 +136,8 @@ public class SimpleTimer2 {
             throw new IllegalArgumentException("addEvent null");
 
         new TimedEvent(this, timeoutMs) {
-        	long absTime = System.currentTimeMillis() + timeoutMs;
             @Override
             public void timeReached() {
-            	System.out.println("Event scheduled for: " + absTime + " started at: " + System.currentTimeMillis() + ", diff: " + (System.currentTimeMillis() - absTime));
                 event.timeReached();
             }
         };