forked from GeyserMC/Geyser
Reset color instead of turning color to white for standalone (#759)
Allows non-black-back terminals to see the Geyser log.
This commit is contained in:
parent
9369b20209
commit
6388a91587
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ public class GeyserStandaloneLogger extends SimpleTerminalConsole implements org
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void info(String message) {
|
public void info(String message) {
|
||||||
log.info(printConsole(ChatColor.WHITE + message, colored));
|
log.info(printConsole(ChatColor.RESET + ChatColor.BOLD + message, colored));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue