From f0241d4a1cfd52340d42f026fae0b623315d039d Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 8 Feb 2017 15:27:25 +0000 Subject: [PATCH] Util: Change logCloseLoop level to DEBUG --- core/java/src/net/i2p/util/Log.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/core/java/src/net/i2p/util/Log.java b/core/java/src/net/i2p/util/Log.java index fe0a4fb0a..e0240265d 100644 --- a/core/java/src/net/i2p/util/Log.java +++ b/core/java/src/net/i2p/util/Log.java @@ -206,20 +206,22 @@ public class Log { } /** - * logs a loop when closing a resource with level INFO + * logs a loop when closing a resource with level DEBUG * This method is for debugging purposes only and - * as such subject to change or removal w/o notice. + * is subject to change or removal w/o notice. + * NOT a supported API. * @param desc vararg description * @since 0.9.8 */ public void logCloseLoop(Object... desc) { - logCloseLoop(Log.INFO, desc); + logCloseLoop(Log.DEBUG, desc); } /** * Logs a close loop when closing a resource * This method is for debugging purposes only and - * as such subject to change or removal w/o notice. + * is subject to change or removal w/o notice. + * NOT a supported API. * @param desc vararg description of the resource * @param level level at which to log * @since 0.9.8