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 b09116ac99..81b83a67dc 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 @@ public Map> getAggregatedStoppableCheck(String baseUrl, 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); }