added log level explicit numbers

This commit is contained in:
Booklordofthedings 2024-08-02 11:39:30 +02:00
parent 6144297a3c
commit c95cc53b21

View file

@ -474,9 +474,9 @@ class LogSetting
enum LogLevel
{
Trace,
Debug,
Info,
Warning,
Fatal
Trace = 0,
Debug = 1,
Info = 2,
Warning = 3,
Fatal = 4
}