Merge branch 'master' into dev

# Conflicts:
#	src/frontend/main.cpp
This commit is contained in:
SimoneN64
2024-08-18 01:08:40 +02:00
3 changed files with 3 additions and 5 deletions

View File

@@ -9,13 +9,13 @@
namespace Util {
enum LogLevel : u8 {
Trace, Debug, Info, Warn, Error, Always
Trace, Debug, Warn, Info, Error, Always
};
#ifndef NDEBUG
static constexpr auto globalLogLevel = Debug;
#else
static constexpr auto globalLogLevel = Error;
static constexpr auto globalLogLevel = Info;
#endif
template <LogLevel messageType = Info, typename ...Args>