diff --git a/src/debug/Log.cpp b/src/debug/Log.cpp index 559e7b79..a864f0d2 100644 --- a/src/debug/Log.cpp +++ b/src/debug/Log.cpp @@ -31,6 +31,9 @@ void Debug::log(LogLevel level, const char* fmt, ...) { case CRIT: ofs << "[CRITICAL] "; break; + case INFO: + ofs << "[INFO] "; + break; default: break; } diff --git a/src/debug/Log.hpp b/src/debug/Log.hpp index 2a7ab425..814da421 100644 --- a/src/debug/Log.hpp +++ b/src/debug/Log.hpp @@ -8,7 +8,8 @@ enum LogLevel { LOG = 0, WARN, ERR, - CRIT + CRIT, + INFO }; namespace Debug {