LeviLamina
Loading...
Searching...
No Matches
LogLevel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7enum class LogLevel : int {
8 // bitfield representation
9 Verbose = 1 << 0,
10 Info = 1 << 1,
11 Warning = 1 << 2,
12 Error = 1 << 3,
13};
14
15}