Added a result system to keep better track of errors

This commit is contained in:
2024-02-17 00:45:44 +01:00
parent 85ad0ab103
commit 044f15dc3c
5 changed files with 50 additions and 8 deletions

View File

@@ -29,10 +29,6 @@ void log_message(LogLevel level, const char* format, ...) {
color = "\033[0;90m";
level_str = "DEBUG";
break;
case LOG_LEVEL_INFO:
color = "\033[0;32m";
level_str = "INFO";
break;
case LOG_LEVEL_WARNING:
color = "\033[0;33m";
level_str = "WARNING";