Merge pull request #2435 from Multiverse/webpaste

Fix Double Prefix when Logging Version Info
This commit is contained in:
Jeremy Wood 2020-10-07 22:37:22 -04:00 committed by GitHub
commit 9fce6c54f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ public class VersionCommand extends MultiverseCommand {
String[] lines = versionInfo.split(System.lineSeparator());
for (String line : lines) {
if (!line.isEmpty()) {
Logging.info(line);
this.plugin.getServer().getLogger().info(line);
}
}