This is an automated email from the ASF dual-hosted git repository.

adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git


The following commit(s) were added to refs/heads/master by this push:
     new f7ed4ee362 HDDS-12328. Set the log for starting LeakDetector to DEBUG 
level (#7871)
f7ed4ee362 is described below

commit f7ed4ee36218399cbcbfd5229de681b4d4cec442
Author: Takanobu Asanuma <[email protected]>
AuthorDate: Fri Feb 14 15:31:21 2025 +0900

    HDDS-12328. Set the log for starting LeakDetector to DEBUG level (#7871)
---
 .../common/src/main/java/org/apache/hadoop/hdds/utils/LeakDetector.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/utils/LeakDetector.java
 
b/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/utils/LeakDetector.java
index 9579d4e73b..7bd7ec1480 100644
--- 
a/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/utils/LeakDetector.java
+++ 
b/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/utils/LeakDetector.java
@@ -71,7 +71,7 @@ private void start() {
     Thread t = new Thread(this::run);
     t.setName(LeakDetector.class.getSimpleName() + "-" + name);
     t.setDaemon(true);
-    LOG.info("Starting leak detector thread {}.", name);
+    LOG.debug("Starting leak detector thread {}.", name);
     t.start();
   }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to