Skip to content

Commit

Permalink
HBASE-27588 "Instantiating StoreFileTracker impl" INFO level logging …
Browse files Browse the repository at this point in the history
…is too chatty (#4989)

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
  • Loading branch information
apurtell committed Jan 25, 2023
1 parent 5bdf264 commit 01e5eac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static Class<? extends StoreFileTracker> getTrackerClass(String trackerNa
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);
}

Expand Down Expand Up @@ -170,7 +170,7 @@ static StoreFileTrackerBase createForMigration(Configuration conf, String config
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);
}

Expand Down

0 comments on commit 01e5eac

Please sign in to comment.