diff --git a/transports/transport-rest/transport-rest-client/src/main/java/org/apache/servicecomb/transport/rest/client/http/RestClientInvocation.java b/transports/transport-rest/transport-rest-client/src/main/java/org/apache/servicecomb/transport/rest/client/http/RestClientInvocation.java index db148dd80e..180c46f519 100644 --- a/transports/transport-rest/transport-rest-client/src/main/java/org/apache/servicecomb/transport/rest/client/http/RestClientInvocation.java +++ b/transports/transport-rest/transport-rest-client/src/main/java/org/apache/servicecomb/transport/rest/client/http/RestClientInvocation.java @@ -98,11 +98,11 @@ public void invoke(Invocation invocation, AsyncResponse asyncResp) throws Except asyncResp.fail(invocation.getInvocationType(), e); }); clientRequest.connectionHandler(connection -> { - LOGGER.info("http connection connected, local:{}, remote:{}.", + LOGGER.debug("http connection connected, local:{}, remote:{}.", connection.localAddress(), connection.remoteAddress()); connection.closeHandler(v -> { - LOGGER.info("http connection closed, local:{}, remote:{}.", + LOGGER.debug("http connection closed, local:{}, remote:{}.", connection.localAddress(), connection.remoteAddress()); });