From 01e5eac80bf511ffb9c0cb885f99207682b11b76 Mon Sep 17 00:00:00 2001 From: Andrew Purtell Date: Wed, 25 Jan 2023 14:40:24 -0800 Subject: [PATCH] HBASE-27588 "Instantiating StoreFileTracker impl" INFO level logging is too chatty (#4989) Signed-off-by: Peter Somogyi --- .../storefiletracker/StoreFileTrackerFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/storefiletracker/StoreFileTrackerFactory.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/storefiletracker/StoreFileTrackerFactory.java index 4c7c19eebb9..0f487afd1cb 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/storefiletracker/StoreFileTrackerFactory.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/storefiletracker/StoreFileTrackerFactory.java @@ -119,7 +119,7 @@ public final class StoreFileTrackerFactory { public static StoreFileTracker create(Configuration conf, boolean isPrimaryReplica, StoreContext ctx) { Class tracker = getTrackerClass(conf); - LOG.info("instantiating StoreFileTracker impl {}", tracker.getName()); + LOG.debug("instantiating StoreFileTracker impl {}", tracker.getName()); return ReflectionUtils.newInstance(tracker, conf, isPrimaryReplica, ctx); } @@ -170,7 +170,7 @@ public final class StoreFileTrackerFactory { throw new IllegalArgumentException("Should not specify " + configName + " as " + Trackers.MIGRATION + " because it can not be nested"); } - LOG.info("instantiating StoreFileTracker impl {} as {}", tracker.getName(), configName); + LOG.debug("instantiating StoreFileTracker impl {} as {}", tracker.getName(), configName); return ReflectionUtils.newInstance(tracker, conf, isPrimaryReplica, ctx); }