Skip to content

Commit

Permalink
Fix missing startup debug logs on Standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
davchoo committed May 27, 2022
1 parent 8e3119c commit f079ee4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public void onEnable() {
return;
}
}
geyserLogger.setDebug(geyserConfig.isDebugMode());
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);

// Allow libraries like Protocol to have their debug information passthrough
Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/org/geysermc/geyser/GeyserImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ private void start() {

GeyserLogger logger = bootstrap.getGeyserLogger();
GeyserConfiguration config = bootstrap.getGeyserConfig();
logger.setDebug(config.isDebugMode());

ScoreboardUpdater.init();

Expand Down

0 comments on commit f079ee4

Please sign in to comment.