Changing logging level.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/5bc1b9e5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/5bc1b9e5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/5bc1b9e5 Branch: refs/heads/master Commit: 5bc1b9e5cde1da5b9ae74014fb314261c1bb7ced Parents: 6a18af8 Author: Aaron McCurry <[email protected]> Authored: Tue Oct 28 21:24:36 2014 -0400 Committer: Aaron McCurry <[email protected]> Committed: Tue Oct 28 21:24:42 2014 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/blur/command/BaseCommandManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/5bc1b9e5/blur-core/src/main/java/org/apache/blur/command/BaseCommandManager.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/command/BaseCommandManager.java b/blur-core/src/main/java/org/apache/blur/command/BaseCommandManager.java index 958c004..ba6d4be 100644 --- a/blur-core/src/main/java/org/apache/blur/command/BaseCommandManager.java +++ b/blur-core/src/main/java/org/apache/blur/command/BaseCommandManager.java @@ -235,7 +235,7 @@ public abstract class BaseCommandManager implements Closeable { protected BigInteger checkContents(FileStatus fileStatus, FileSystem fileSystem) throws IOException { if (fileStatus.isDir()) { - LOG.info("Scanning directory [{0}].", fileStatus.getPath()); + LOG.debug("Scanning directory [{0}].", fileStatus.getPath()); BigInteger count = BigInteger.ZERO; Path path = fileStatus.getPath(); FileStatus[] listStatus = fileSystem.listStatus(path); @@ -249,7 +249,7 @@ public abstract class BaseCommandManager implements Closeable { long len = fileStatus.getLen(); BigInteger bi = BigInteger.valueOf(hashCode).add( BigInteger.valueOf(modificationTime).add(BigInteger.valueOf(len))); - LOG.info("File path hashcode [{0}], mod time [{1}], len [{2}] equals file code [{3}].", + LOG.debug("File path hashcode [{0}], mod time [{1}], len [{2}] equals file code [{3}].", Integer.toString(hashCode), Long.toString(modificationTime), Long.toString(len), bi.toString(Character.MAX_RADIX)); return bi;
