diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-08-21 15:49:30 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-08-21 15:49:30 +0200 |
commit | cb7f379c3986cfe71d3c4a7b6f9474f264a3a8cd (patch) | |
tree | 40c3e7d6fe062837694fffee3641e0256c1de1d4 /server | |
parent | 52213a0f26e3f22a4bee652a2b0c6d0f239fc8dd (diff) | |
download | sonarqube-cb7f379c3986cfe71d3c4a7b6f9474f264a3a8cd.tar.gz sonarqube-cb7f379c3986cfe71d3c4a7b6f9474f264a3a8cd.zip |
changed indexing stats to debug level
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java b/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java index 8061f04ab64..a8003978d94 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java +++ b/server/sonar-server/src/main/java/org/sonar/server/search/IndexQueue.java @@ -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) { |