]> source.dussan.org Git - sonarqube.git/commitdiff
NO-JIRA improve log to not be sensitive to line return from user input
authorPierre <pierre.guillot@sonarsource.com>
Mon, 19 Jun 2023 10:13:53 +0000 (12:13 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 19 Jun 2023 20:03:13 +0000 (20:03 +0000)
server/sonar-webserver-core/src/main/java/org/sonar/server/telemetry/TelemetryDaemon.java

index be82f8841c743200a78fb2dbac2494e0b50d8206..881492443cb5d9b1da5daf5712fe1ab07adc2cbf 100644 (file)
@@ -114,7 +114,7 @@ public class TelemetryDaemon extends AbstractStoppableScheduledExecutorServiceIm
           updateTelemetryProps(now);
         }
       } catch (Exception e) {
-        LOG.debug("Error while checking SonarQube statistics: {}", e.getMessage());
+        LOG.debug("Error while checking SonarQube statistics: {}", e.getMessage(), e);
       }
       // do not check at start up to exclude test instance which are not up for a long time
     };