Skip to content

Commit 48d3de8

Browse files
committed
HBASE-27588 "Instantiating StoreFileTracker impl" INFO level logging is too chatty (#4989)
Signed-off-by: Peter Somogyi <[email protected]>
1 parent 810514f commit 48d3de8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/storefiletracker/StoreFileTrackerFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static Class<? extends StoreFileTracker> getTrackerClass(String trackerNa
119119
public static StoreFileTracker create(Configuration conf, boolean isPrimaryReplica,
120120
StoreContext ctx) {
121121
Class<? extends StoreFileTracker> tracker = getTrackerClass(conf);
122-
LOG.info("instantiating StoreFileTracker impl {}", tracker.getName());
122+
LOG.debug("instantiating StoreFileTracker impl {}", tracker.getName());
123123
return ReflectionUtils.newInstance(tracker, conf, isPrimaryReplica, ctx);
124124
}
125125

@@ -170,7 +170,7 @@ static StoreFileTrackerBase createForMigration(Configuration conf, String config
170170
throw new IllegalArgumentException("Should not specify " + configName + " as "
171171
+ Trackers.MIGRATION + " because it can not be nested");
172172
}
173-
LOG.info("instantiating StoreFileTracker impl {} as {}", tracker.getName(), configName);
173+
LOG.debug("instantiating StoreFileTracker impl {} as {}", tracker.getName(), configName);
174174
return ReflectionUtils.newInstance(tracker, conf, isPrimaryReplica, ctx);
175175
}
176176

0 commit comments

Comments
 (0)