| 51 | } |
| 52 | |
| 53 | ivec2 Logger::GetCursorPosition() |
| 54 | { |
| 55 | if (m_ConsoleLogger) |
| 56 | { |
| 57 | return m_ConsoleLogger->GetCursorPosition(); |
| 58 | } |
| 59 | |
| 60 | return ivec2(-1); |
| 61 | } |
| 62 | |
| 63 | void Logger::Log(const std::string& msg, LogLevel level, bool timestamp, ivec2 cursorPos) |
| 64 | { |
nothing calls this directly
no outgoing calls
no test coverage detected