mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-29 05:55:48 +01:00
Merge pull request #2435 from Multiverse/webpaste
Fix Double Prefix when Logging Version Info
This commit is contained in:
commit
9fce6c54f6
@ -149,7 +149,7 @@ public class VersionCommand extends MultiverseCommand {
|
|||||||
String[] lines = versionInfo.split(System.lineSeparator());
|
String[] lines = versionInfo.split(System.lineSeparator());
|
||||||
for (String line : lines) {
|
for (String line : lines) {
|
||||||
if (!line.isEmpty()) {
|
if (!line.isEmpty()) {
|
||||||
Logging.info(line);
|
this.plugin.getServer().getLogger().info(line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user