diff --git a/core/java/src/net/i2p/stat/Rate.java b/core/java/src/net/i2p/stat/Rate.java
index 8bf5bcf472aa40d56d703fb60ebce622021ab4f9..a33b63dba56d468268f0f0e0b64c6a850f33953f 100644
--- a/core/java/src/net/i2p/stat/Rate.java
+++ b/core/java/src/net/i2p/stat/Rate.java
@@ -218,8 +218,8 @@ public class Rate {
             long measuredPeriod = now - _lastCoalesceDate;
             if (measuredPeriod < _period - SLACK) {
                 // no need to coalesce (assuming we only try to do so once per minute)
-                if (_log.shouldLog(Log.DEBUG))
-                    _log.debug("not coalescing, measuredPeriod = " + measuredPeriod + " period = " + _period);
+                //if (_log.shouldLog(Log.DEBUG))
+                //    _log.debug("not coalescing, measuredPeriod = " + measuredPeriod + " period = " + _period);
                 return;
             }