3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-01 23:50:11 +02:00

Reset color instead of turning color to white for standalone (#759)

Allows non-black-back terminals to see the Geyser log.
Dieser Commit ist enthalten in:
Camotoy 2020-06-16 20:05:39 -04:00 committet von GitHub
Ursprung 9369b20209
Commit 6388a91587
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -82,7 +82,7 @@ public class GeyserStandaloneLogger extends SimpleTerminalConsole implements org
@Override
public void info(String message) {
log.info(printConsole(ChatColor.WHITE + message, colored));
log.info(printConsole(ChatColor.RESET + ChatColor.BOLD + message, colored));
}
@Override