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

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


The following commit(s) were added to refs/heads/master by this push:
     new dc8ad624a Change customized stoppable check log level(#3004)
dc8ad624a is described below

commit dc8ad624afc0860237a0d4e2c3a44190146ab527
Author: Xiaxuan Gao <[email protected]>
AuthorDate: Tue Feb 18 11:05:21 2025 -0800

    Change customized stoppable check log level(#3004)
---
 .../main/java/org/apache/helix/rest/client/CustomRestClientImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/helix-rest/src/main/java/org/apache/helix/rest/client/CustomRestClientImpl.java
 
b/helix-rest/src/main/java/org/apache/helix/rest/client/CustomRestClientImpl.java
index b09116ac9..81b83a67d 100644
--- 
a/helix-rest/src/main/java/org/apache/helix/rest/client/CustomRestClientImpl.java
+++ 
b/helix-rest/src/main/java/org/apache/helix/rest/client/CustomRestClientImpl.java
@@ -155,7 +155,7 @@ class CustomRestClientImpl implements CustomRestClient {
   protected JsonNode getJsonObject(HttpResponse httpResponse) throws 
IOException {
     HttpEntity httpEntity = httpResponse.getEntity();
     String str = EntityUtils.toString(httpEntity);
-    LOG.info("Converting Response Content {} to JsonNode", str);
+    LOG.debug("Converting Response Content {} to JsonNode", str);
     return OBJECT_MAPPER.readTree(str);
   }
 

Reply via email to