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 GitHub
parent 6172c3192d
commit 32414cfe46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;
}