From: lukasz-jarocki-sonarsource Date: Tue, 18 Jul 2023 07:09:57 +0000 (+0200) Subject: SONAR-19947 moved unsuccesful sending of individual characters to be logged at DEBUG... X-Git-Tag: 10.2.0.77647~364 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3a1a12c619d9850428243b779e5f6d42bf4baa4c;p=sonarqube.git SONAR-19947 moved unsuccesful sending of individual characters to be logged at DEBUG level --- diff --git a/server/sonar-webserver-pushapi/src/main/java/org/sonar/server/pushapi/ServerPushClient.java b/server/sonar-webserver-pushapi/src/main/java/org/sonar/server/pushapi/ServerPushClient.java index 812a5518633..58483ac7ad8 100644 --- a/server/sonar-webserver-pushapi/src/main/java/org/sonar/server/pushapi/ServerPushClient.java +++ b/server/sonar-webserver-pushapi/src/main/java/org/sonar/server/pushapi/ServerPushClient.java @@ -84,7 +84,7 @@ public abstract class ServerPushClient { private void handleIOException(IOException e) { String remoteAddr = asyncContext.getRequest().getRemoteAddr(); - LOG.info(String.format("The server push client %s gone without notice, closing the connection (%s)", remoteAddr, e.getMessage())); + LOG.debug(String.format("The server push client %s gone without notice, closing the connection (%s)", remoteAddr, e.getMessage())); throw new IllegalStateException(e.getMessage()); }