mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-09 17:19:47 +03:00
[FIX] Фикс уровня логгирования dev
This commit is contained in:
parent
ac3b3bf10c
commit
f2e38a150b
1 changed files with 4 additions and 1 deletions
|
@ -107,7 +107,7 @@ public static void debug(String format, Object... args) {
|
|||
|
||||
@LauncherAPI
|
||||
public static void dev(String format, Object... args) {
|
||||
debug(String.format(format, args));
|
||||
dev(String.format(format, args));
|
||||
}
|
||||
|
||||
@LauncherAPI
|
||||
|
@ -378,6 +378,9 @@ public static String htmlFormatLog(Level level, String dateTime, String message,
|
|||
case DEBUG:
|
||||
levelColor = "gravitlauncher-log-debug";
|
||||
break;
|
||||
case DEV:
|
||||
levelColor = "gravitlauncher-log-dev";
|
||||
break;
|
||||
default:
|
||||
levelColor = "gravitlauncher-log-unknown";
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue