Skip to content

Commit

Permalink
fix(shared/logger): white bright color instead of reset
Browse files Browse the repository at this point in the history
  • Loading branch information
itIsMaku committed Mar 23, 2024
1 parent 521d129 commit 1335906
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void publish(LogRecord record) {
} else {
className = clazz.getName();
}
record.setLoggerName(String.format("%s%s%s - %s%s%s", ConsoleColors.CYAN_BRIGHT, Thread.currentThread().getName(), ConsoleColors.WHITE_BRIGHT, ConsoleColors.CYAN_BRIGHT, className, ConsoleColors.WHITE_BRIGHT));
record.setLoggerName(String.format("%s%s%s - %s%s%s", ConsoleColors.CYAN_BRIGHT, Thread.currentThread().getName(), ConsoleColors.WHITE_BRIGHT, ConsoleColors.CYAN_BRIGHT, className, ConsoleColors.RESET));
}

@Override
Expand Down

0 comments on commit 1335906

Please sign in to comment.