HBASE-20665: Changed log level of HBASE-8547 warning to debug Closes #77
Signed-off-by: Josh Elser <[email protected]> Signed-off-by: Sean Busbey <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/6c204fb5 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/6c204fb5 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/6c204fb5 Branch: refs/heads/branch-2.0 Commit: 6c204fb572eb2ba47af66b1d10f3c7571d718d5f Parents: 6f01af0 Author: eric-maynard <[email protected]> Authored: Thu Jun 7 11:36:19 2018 -0400 Committer: Josh Elser <[email protected]> Committed: Thu Jun 7 11:36:19 2018 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/6c204fb5/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java index 2b63e54..6d9fc46 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java @@ -387,7 +387,7 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { } String msg = "Cached an already cached block: " + cacheKey + " cb:" + cb.getCacheKey(); msg += ". This is harmless and can happen in rare cases (see HBASE-8547)"; - LOG.warn(msg); + LOG.debug(msg); return; } long currentSize = size.get();
