HADOOP-18574. Changing log level of IOStatistics increment to make the DEBUG logs less noisy (#5223)
Contributed by: Mehakmeet Singh
This commit is contained in:
parent
6172c3192d
commit
32414cfe46
|
@ -190,7 +190,7 @@ final class IOStatisticsStoreImpl extends WrappedIOStatistics
|
||||||
return counter.get();
|
return counter.get();
|
||||||
} else {
|
} else {
|
||||||
long l = incAtomicLong(counter, value);
|
long l = incAtomicLong(counter, value);
|
||||||
LOG.debug("Incrementing counter {} by {} with final value {}",
|
LOG.trace("Incrementing counter {} by {} with final value {}",
|
||||||
key, value, l);
|
key, value, l);
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue