From 3a1a12c619d9850428243b779e5f6d42bf4baa4c Mon Sep 17 00:00:00 2001 From: lukasz-jarocki-sonarsource Date: Tue, 18 Jul 2023 09:09:57 +0200 Subject: [PATCH] SONAR-19947 moved unsuccesful sending of individual characters to be logged at DEBUG level --- .../main/java/org/sonar/server/pushapi/ServerPushClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } -- 2.39.5