]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-19947 moved unsuccesful sending of individual characters to be logged at DEBUG...
authorlukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com>
Tue, 18 Jul 2023 07:09:57 +0000 (09:09 +0200)
committersonartech <sonartech@sonarsource.com>
Tue, 18 Jul 2023 20:03:23 +0000 (20:03 +0000)
server/sonar-webserver-pushapi/src/main/java/org/sonar/server/pushapi/ServerPushClient.java

index 812a55186338c23c21e6aecf3cbb6f454417aa30..58483ac7ad8ce42bcaad4703e696f6a5782bebb4 100644 (file)
@@ -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());
   }