HDFS-12963. Error log level in ShortCircuitRegistry#removeShm. Contributed by hu xiaodong.

This commit is contained in:
Yiqun Lin 2018-01-24 10:43:36 +08:00
parent e307edcb47
commit d95c13774e
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public class ShortCircuitRegistry {
public synchronized void removeShm(ShortCircuitShm shm) {
if (LOG.isTraceEnabled()) {
LOG.debug("removing shm " + shm);
LOG.trace("removing shm " + shm);
}
// Stop tracking the shmId.
RegisteredShm removedShm = segments.remove(shm.getShmId());