mirror of
https://github.com/unmojang/authlib-injector.git
synced 2025-09-30 23:01:29 -04:00
Print logs to stdout instead of stderr
This commit is contained in:
parent
07df33deca
commit
d86d99c547
@ -32,7 +32,7 @@ public final class Logging {
|
||||
private static void initRootLogger() {
|
||||
ROOT.setLevel(Level.ALL);
|
||||
ROOT.setUseParentHandlers(false);
|
||||
StreamHandler handler = new StreamHandler(System.err, new Formatter() {
|
||||
StreamHandler handler = new StreamHandler(System.out, new Formatter() {
|
||||
private String convertLoggerName(String loggerName) {
|
||||
if (loggerName.startsWith(PREFIX)) {
|
||||
return "authlib-injector" + loggerName.substring(PREFIX.length());
|
||||
|
Loading…
x
Reference in New Issue
Block a user