HBASE-20665: Changed log level of HBASE-8547 warning to debug

Closes #77

Signed-off-by: Josh Elser <elserj@apache.org>
Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
eric-maynard 2018-06-06 11:09:03 -04:00 committed by Josh Elser
parent b002b0b8b0
commit 9a80907760
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize {
} else { } else {
String msg = "Cached an already cached block: " + cacheKey + " cb:" + cb.getCacheKey(); String msg = "Cached an already cached block: " + cacheKey + " cb:" + cb.getCacheKey();
msg += ". This is harmless and can happen in rare cases (see HBASE-8547)"; msg += ". This is harmless and can happen in rare cases (see HBASE-8547)";
LOG.warn(msg); LOG.debug(msg);
return; return;
} }
} }