MCPcopy Create free account
hub / github.com/DanielChappuis/reactphysics3d / getLevelName

Method getLevelName

include/reactphysics3d/utils/Logger.h:69–79  ·  view source on GitHub ↗

Return the name of a level

Source from the content-addressed store, hash-verified

67
68 /// Return the name of a level
69 static std::string getLevelName(Level level) {
70
71 switch(level) {
72 case Level::Information: return "Information";
73 case Level::Warning: return "Warning";
74 case Level::Error: return "Error";
75 }
76
77 assert(false);
78 return "";
79 }
80
81 public :
82

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected