Repository: incubator-blur Updated Branches: refs/heads/master e186d7ad5 -> 98601f6c2
Changing logging from info to debug. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/1a86c406 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/1a86c406 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/1a86c406 Branch: refs/heads/master Commit: 1a86c406f56202c46c5a530a6d35daefcce3cade Parents: e186d7a Author: Aaron McCurry <[email protected]> Authored: Mon Mar 16 21:35:49 2015 -0400 Committer: Aaron McCurry <[email protected]> Committed: Mon Mar 16 21:35:57 2015 -0400 ---------------------------------------------------------------------- .../src/main/java/org/apache/blur/server/cache/ThriftCache.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/1a86c406/blur-core/src/main/java/org/apache/blur/server/cache/ThriftCache.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/server/cache/ThriftCache.java b/blur-core/src/main/java/org/apache/blur/server/cache/ThriftCache.java index 8b377cc..ca7af7b 100644 --- a/blur-core/src/main/java/org/apache/blur/server/cache/ThriftCache.java +++ b/blur-core/src/main/java/org/apache/blur/server/cache/ThriftCache.java @@ -230,7 +230,7 @@ public class ThriftCache { synchronized (_lastModTimestamps) { _lastModTimestamps.put(table, System.nanoTime()); } - LOG.info("Clearing cache for table [{0}]", table); + LOG.debug("Clearing cache for table [{0}]", table); Set<Entry<ThriftCacheKey<?>, ThriftCacheValue<?>>> entrySet = _cacheMap.entrySet(); Iterator<Entry<ThriftCacheKey<?>, ThriftCacheValue<?>>> iterator = entrySet.iterator(); while (iterator.hasNext()) { @@ -242,7 +242,7 @@ public class ThriftCache { } public void clear() { - LOG.info("Clearing all cache."); + LOG.debug("Clearing all cache."); _cacheMap.clear(); }
