Changing the status logging to be debug instead of info.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/78db9701 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/78db9701 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/78db9701 Branch: refs/heads/0.2.0-newtypesystem Commit: 78db9701a9de3630db18bdf872c4be7f0bedb25d Parents: 333cd35 Author: Aaron McCurry <[email protected]> Authored: Tue Jul 23 21:38:07 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Tue Jul 23 21:38:07 2013 -0400 ---------------------------------------------------------------------- .../src/main/java/org/apache/blur/lucene/warmup/IndexWarmup.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/78db9701/blur-store/src/main/java/org/apache/blur/lucene/warmup/IndexWarmup.java ---------------------------------------------------------------------- diff --git a/blur-store/src/main/java/org/apache/blur/lucene/warmup/IndexWarmup.java b/blur-store/src/main/java/org/apache/blur/lucene/warmup/IndexWarmup.java index 10a962c..9069ed9 100644 --- a/blur-store/src/main/java/org/apache/blur/lucene/warmup/IndexWarmup.java +++ b/blur-store/src/main/java/org/apache/blur/lucene/warmup/IndexWarmup.java @@ -155,7 +155,7 @@ public class IndexWarmup { double seconds = (now - start) / 1000000000.0; double rateMbPerSec = (bytesReadPerPass / seconds) / 1000 / 1000; double complete = (((double) totalLength - (double) length) / (double) totalLength) * 100.0; - LOG.info("Context [{3}] warming field [{0}] in file [{1}] is [{2}%] complete at rate of [{4} MB/s]", fieldName, + LOG.debug("Context [{3}] warming field [{0}] in file [{1}] is [{2}%] complete at rate of [{4} MB/s]", fieldName, fileName, complete, context, rateMbPerSec); start = System.nanoTime(); bytesReadPerPass = 0; @@ -175,7 +175,7 @@ public class IndexWarmup { seconds = 1; } double rateMbPerSec = (bytesReadPerPass / seconds) / 1000 / 1000; - LOG.info("Context [{3}] warming field [{0}] in file [{1}] is [{2}%] complete at rate of [{4} MB/s]", fieldName, + LOG.debug("Context [{3}] warming field [{0}] in file [{1}] is [{2}%] complete at rate of [{4} MB/s]", fieldName, fileName, 100, context, rateMbPerSec); input.clone(); }
