This commit is contained in:
Valentin Moguérou 2024-04-16 01:42:20 +02:00
parent 1d981103b6
commit c1051e9866
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ void logprint(LogLevel level, char* str, va_list args)
break;
case (LOG_WARN):
strcpy(label, "WARN");
strcpy(ansi_code, "\x1b[35;49m");
strcpy(ansi_code, "\x1b[93;49m");
break;
case (LOG_INFO):
strcpy(label, "INFO");
@ -77,7 +77,7 @@ void logprint(LogLevel level, char* str, va_list args)
break;
case (LOG_DEBUG):
strcpy(label, "DEBUG");
strcpy(ansi_code, "\x1b[36;49m");
strcpy(ansi_code, "\x1b[96;49m");
break;
case (LOG_TRACE):
strcpy(label, "TRACE");