| 18 | }; |
| 19 | |
| 20 | static inline const char* DebugLevelStr(uint32_t Level) { |
| 21 | switch (Level) { |
| 22 | case NONE: return "NONE"; |
| 23 | case ASSERT: return "A"; |
| 24 | case ERROR: return "E"; |
| 25 | case DEBUG: return "D"; |
| 26 | case INFO: return "I"; |
| 27 | default: return "???"; break; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | static inline fmt::text_style DebugLevelStyle(uint32_t Level) { |
| 32 | switch (Level) { |
no outgoing calls