| 309 | } |
| 310 | |
| 311 | void Output::InfoStr(std::string const& msg) { |
| 312 | if (log_level < LogLevel::Info) { |
| 313 | return; |
| 314 | } |
| 315 | WriteLog(LogLevel::Info, msg, Color(255, 255, 255, 255)); |
| 316 | } |
| 317 | |
| 318 | void Output::DebugStr(std::string const& msg) { |
| 319 | if (log_level < LogLevel::Debug) { |