From e65289cd0d4fa62c4b95edbcb06c59ef6bfaa652 Mon Sep 17 00:00:00 2001
From: zab2 <zab2@mail.i2p>
Date: Sun, 8 Sep 2013 15:23:09 +0000
Subject: [PATCH] Document logCloseLoop() methods

---
 core/java/src/net/i2p/util/Log.java | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/core/java/src/net/i2p/util/Log.java b/core/java/src/net/i2p/util/Log.java
index 57af143168..75c56e79ca 100644
--- a/core/java/src/net/i2p/util/Log.java
+++ b/core/java/src/net/i2p/util/Log.java
@@ -187,7 +187,10 @@ public class Log {
     
     /**
      * logs a loop when closing a resource with level INFO
+     * This method is for debugging purposes only and 
+     * as such subject to change or removal w/o notice.
      * @param desc vararg description
+     * @since 0.9.8
      */
     public void logCloseLoop(Object... desc) {
         logCloseLoop(Log.INFO, desc);
@@ -195,8 +198,11 @@ public class Log {
     
     /**
      * 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.
      * @param desc vararg description of the resource
      * @param level level at which to log
+     * @since 0.9.8
      */
     public void logCloseLoop(int level, Object... desc) {
         if (!shouldLog(level)) 
-- 
GitLab