]> source.dussan.org Git - sonarqube.git/commitdiff
changed indexing stats to debug level
authorStephane Gamard <stephane.gamard@searchbox.com>
Thu, 21 Aug 2014 13:49:30 +0000 (15:49 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Thu, 21 Aug 2014 13:49:30 +0000 (15:49 +0200)
server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java

index 8061f04ab641a410f5a203d89260b148f4f8f016..a8003978d94eafe8f5f67a5f1d0567efd8a4314a 100644 (file)
@@ -118,7 +118,7 @@ public class IndexQueue extends LinkedBlockingQueue<Runnable>
       }
       refreshTime = System.currentTimeMillis() - refreshTime;
 
-      LOGGER.info("-- submitted {} items with {}ms in normalization, {}ms indexing and {}ms refresh({}). Total: {}ms",
+      LOGGER.debug("-- submitted {} items with {}ms in normalization, {}ms indexing and {}ms refresh({}). Total: {}ms",
         bulkRequestBuilder.numberOfActions(), normTime, indexTime, refreshTime, indices, (normTime + indexTime + refreshTime));
 
     } catch (Exception e) {