gramods
Loading...
Searching...
No Matches
ConsoleLevel.hh
1
2#ifndef GRAMODS_CORE_CONSOLELEVEL
3#define GRAMODS_CORE_CONSOLELEVEL
4
5BEGIN_NAMESPACE_GMCORE;
6
10enum struct ConsoleLevel {
11
17 Error = 0,
18
24 Warning = 1,
25
32 Information = 2,
33
39 Debug1 = 3,
40
46 Debug2 = 4,
47
53 Debug3 = 5
54};
55
56END_NAMESPACE_GMCORE;
57
58#endif