MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / DebugLevelStr

Function DebugLevelStr

FEXCore/include/FEXCore/Utils/LogManager.h:20–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18};
19
20static 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
31static inline fmt::text_style DebugLevelStyle(uint32_t Level) {
32 switch (Level) {

Callers 6

MsgHandlerFunction · 0.85
MsgHandlerFunction · 0.85
MsgHandlerFunction · 0.85
MsgHandlerFunction · 0.85
ClientMsgHandlerFunction · 0.85
MsgHandlerFunction · 0.85

Calls

no outgoing calls

Tested by 1

MsgHandlerFunction · 0.68