From 32414cfe46c6b691f6fa84896207941124dd1317 Mon Sep 17 00:00:00 2001 From: Mehakmeet Singh Date: Thu, 15 Dec 2022 10:19:18 +0530 Subject: [PATCH] HADOOP-18574. Changing log level of IOStatistics increment to make the DEBUG logs less noisy (#5223) Contributed by: Mehakmeet Singh --- .../apache/hadoop/fs/statistics/impl/IOStatisticsStoreImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/statistics/impl/IOStatisticsStoreImpl.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/statistics/impl/IOStatisticsStoreImpl.java index 0471703b3b..6db3820891 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/statistics/impl/IOStatisticsStoreImpl.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/statistics/impl/IOStatisticsStoreImpl.java @@ -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; }