LeviLamina
Loading...
Searching...
No Matches
LogLevelFilter.h
1
#pragma once
2
3
#include "mc/_HeaderOutputPredefine.h"
4
5
namespace
Editor {
6
7
enum class
LogLevelFilter :
int
{
8
// bitfield representation
9
None = 0,
10
Info = 1 << 0,
11
Warning = 1 << 1,
12
Error = 1 << 2,
13
Debug = 1 << 3,
14
All = Info | Warning | Error | Debug,
15
};
16
17
}
src
mc
editor
logging
LogLevelFilter.h
Generated on Sat Apr 26 2025 05:55:32 for LeviLamina by
1.12.0