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

View File

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