Return the name of a level
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected