minor changes

This commit is contained in:
SimoneN64
2023-09-07 14:56:55 +02:00
parent 1100cfbc90
commit 844776904a
2 changed files with 23 additions and 23 deletions

View File

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