Skip to content

Commit

Permalink
Velocity: remove tracing log entries
Browse files Browse the repository at this point in the history
  • Loading branch information
turikhay committed Mar 26, 2023
1 parent 5ca291e commit cead553
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public MapModCompanion(ProxyServer server, Logger logger,
@DataDirectory Path dataDirectory,
Metrics.Factory metricsFactory
) {
logger.info("Initialized");
this.server = server;
this.logger = logger;
this.dataDirectory = dataDirectory;
Expand All @@ -101,15 +100,13 @@ public IdLookup getConverter() {

@Subscribe
public void onProxyInitialization(ProxyInitializeEvent event) {
logger.info("onProxyInitialization");
fileChangeWatchdogScheduler = FileChangeWatchdog.createScheduler();
metricsFactory.make(this, BSTATS_ID);
load();
}

@Subscribe
public void onProxyShutdown(ProxyShutdownEvent event) {
logger.info("onProxyShutdown");
fileChangeWatchdogScheduler.shutdown();
unload();
}
Expand Down

0 comments on commit cead553

Please sign in to comment.