LeviLamina
Loading...
Searching...
No Matches
LogSeverity.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet {
6
7enum class LogSeverity : int {
8 First = 0,
9 Disabled = 0,
10 CriticalOnly = 1,
11 Error = 2,
12 Warning = 3,
13 Information = 4,
14 Verbose = 5,
15 Count = 6,
16};
17
18}