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 d680d18a258 HDDS-15248. Change KeyOutputStreamSemaphore log from debug 
to trace (#10248)
d680d18a258 is described below

commit d680d18a258aee1114bcf113b554f718d0f9b408
Author: Sergey Soldatov <[email protected]>
AuthorDate: Sat May 16 08:26:25 2026 -0700

    HDDS-15248. Change KeyOutputStreamSemaphore log from debug to trace (#10248)
---
 .../apache/hadoop/ozone/client/io/KeyOutputStreamSemaphore.java   | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/io/KeyOutputStreamSemaphore.java
 
b/hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/io/KeyOutputStreamSemaphore.java
index 51fec58a20a..6366b2da0fb 100644
--- 
a/hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/io/KeyOutputStreamSemaphore.java
+++ 
b/hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/io/KeyOutputStreamSemaphore.java
@@ -49,9 +49,9 @@ public int getQueueLength() {
   public void acquire() throws IOException {
     if (requestSemaphore != null) {
       try {
-        LOG.debug("Acquiring semaphore");
+        LOG.trace("Acquiring semaphore");
         requestSemaphore.acquire();
-        LOG.debug("Acquired semaphore");
+        LOG.trace("Acquired semaphore");
       } catch (InterruptedException e) {
         final String errMsg = "Write aborted. Interrupted waiting for 
KeyOutputStream semaphore: " + e.getMessage();
         LOG.error(errMsg);
@@ -63,9 +63,9 @@ public void acquire() throws IOException {
 
   public void release() {
     if (requestSemaphore != null) {
-      LOG.debug("Releasing semaphore");
+      LOG.trace("Releasing semaphore");
       requestSemaphore.release();
-      LOG.debug("Released semaphore");
+      LOG.trace("Released semaphore");
     }
   }
 }


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

Reply via email to