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:
parent
b002b0b8b0
commit
9a80907760
|
@ -391,7 +391,7 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize {
|
|||
} else {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue