]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11077 move CeCleaningSchedulerImpl DEBUG logs to TRACE
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 31 Jul 2018 09:40:27 +0000 (11:40 +0200)
committerSonarTech <sonartech@sonarsource.com>
Thu, 2 Aug 2018 18:21:37 +0000 (20:21 +0200)
server/sonar-ce/src/main/java/org/sonar/ce/cleaning/CeCleaningSchedulerImpl.java

index b266d4a94ada33e5bc7dc33c3ddc2452c4c861f5..83cf30a9bc36f7f3c013b1777df6cc4d3d98f61b 100644 (file)
@@ -69,7 +69,7 @@ public class CeCleaningSchedulerImpl implements CeCleaningScheduler {
 
   private void resetTasksWithUnknownWorkerUUIDs() {
     try {
-      LOG.debug("Resetting state of tasks with unknown worker UUIDs");
+      LOG.trace("Resetting state of tasks with unknown worker UUIDs");
       internalCeQueue.resetTasksWithUnknownWorkerUUIDs(ceDistributedInformation.getWorkerUUIDs());
     } catch (Exception e) {
       LOG.warn("Failed to reset tasks with unknown worker UUIDs", e);
@@ -78,7 +78,7 @@ public class CeCleaningSchedulerImpl implements CeCleaningScheduler {
 
   private void cancelWornOuts() {
     try {
-      LOG.debug("Cancelling any worn out task");
+      LOG.trace("Cancelling any worn out task");
       internalCeQueue.cancelWornOuts();
     } catch (Exception e) {
       LOG.warn("Failed to cancel worn out tasks", e);