From 3ed337a00d494a13e9c886c7c94267d0fde15723 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Sat, 27 Jul 2024 16:39:08 -0400 Subject: [PATCH] StatManager: fix missing parenthesis that I didn't save before checking in --- core/java/src/net/i2p/stat/StatManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/src/net/i2p/stat/StatManager.java b/core/java/src/net/i2p/stat/StatManager.java index 5218b8cbc..cfba4ecc5 100644 --- a/core/java/src/net/i2p/stat/StatManager.java +++ b/core/java/src/net/i2p/stat/StatManager.java @@ -161,7 +161,7 @@ public class StatManager { if (freq != null) freq.eventOccurred(); else - if (_log.shouldLog(Log.DEBUG) + if (_log.shouldLog(Log.DEBUG)) _log.debug("Invalid frequency stat : " + name); } @@ -171,7 +171,7 @@ public class StatManager { if (stat != null) stat.addData(data, eventDuration); else - if (_log.shouldLog(Log.DEBUG) + if (_log.shouldLog(Log.DEBUG)) _log.debug("Invalid rate stat : " + name); } @@ -185,7 +185,7 @@ public class StatManager { if (stat != null) stat.addData(data); else - if (_log.shouldLog(Log.DEBUG) + if (_log.shouldLog(Log.DEBUG)) _log.debug("Invalid rate stat : " + name); }