MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ToString

Function ToString

Source/Engine/Core/Log.cpp:300–321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

298}
299
300const Char* ToString(LogType e)
301{
302 const Char* result;
303 switch (e)
304 {
305 case LogType::Info:
306 result = TEXT("Info");
307 break;
308 case LogType::Warning:
309 result = TEXT("Warning");
310 break;
311 case LogType::Error:
312 result = TEXT("Error");
313 break;
314 case LogType::Fatal:
315 result = TEXT("Fatal");
316 break;
317 default:
318 result = TEXT("");
319 }
320 return result;
321}
322
323#endif

Callers 15

ProcessLogMessageMethod · 0.70
RenderMethod · 0.50
InitStaticAtlasMethod · 0.50
SetupShadowsMethod · 0.50
reportProgressMethod · 0.50
SaveMethod · 0.50
InitLogMethod · 0.50
unloadMethod · 0.50
SaveMethod · 0.50
CompareToMethod · 0.50
runMethod · 0.50
UpdateVideoFrameMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected