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:
Mehakmeet Singh 2022-12-15 10:19:18 +05:30 committed by Steve Loughran
parent ba55f370a9
commit 1009d2560f
No known key found for this signature in database
GPG Key ID: D22CF846DBB162A0

View File

@ -190,7 +190,7 @@ public long incrementCounter(final String key, final long value) {
return counter.get();
} else {
long l = incAtomicLong(counter, value);
LOG.debug("Incrementing counter {} by {} with final value {}",
LOG.trace("Incrementing counter {} by {} with final value {}",
key, value, l);
return l;
}