Skip to content

Commit

Permalink
Prevent a comma from appearing if Geyser fails to bind (GeyserMC#1174)
Browse files Browse the repository at this point in the history
  • Loading branch information
Camotoy authored Aug 21, 2020
1 parent ee42067 commit 94d6c87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private GeyserConnector(PlatformType platformType, GeyserBootstrap bootstrap) {
if (throwable == null) {
logger.info(LanguageUtils.getLocaleStringLog("geyser.core.start", config.getBedrock().getAddress(), String.valueOf(config.getBedrock().getPort())));
} else {
logger.severe(LanguageUtils.getLocaleStringLog("geyser.core.fail", config.getBedrock().getAddress(), config.getBedrock().getPort()));
logger.severe(LanguageUtils.getLocaleStringLog("geyser.core.fail", config.getBedrock().getAddress(), String.valueOf(config.getBedrock().getPort())));
throwable.printStackTrace();
}
}).join();
Expand Down

0 comments on commit 94d6c87

Please sign in to comment.