LeviLamina
Loading...
Searching...
No Matches
LogLevelFilter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor {
6
7enum 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}