HBASE-27588 "Instantiating StoreFileTracker impl" INFO level logging is too chatty (#4989)

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
This commit is contained in:
Andrew Purtell 2023-01-25 14:40:24 -08:00 committed by GitHub
parent 5bdf264633
commit 01e5eac80b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ public final class StoreFileTrackerFactory {
public static StoreFileTracker create(Configuration conf, boolean isPrimaryReplica,
StoreContext ctx) {
Class<? extends StoreFileTracker> 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);
}