| 302 | } |
| 303 | |
| 304 | void Output::WarningStr(std::string const& warn) { |
| 305 | if (log_level < LogLevel::Warning) { |
| 306 | return; |
| 307 | } |
| 308 | WriteLog(LogLevel::Warning, warn, Color(255, 255, 0, 255)); |
| 309 | } |
| 310 | |
| 311 | void Output::InfoStr(std::string const& msg) { |
| 312 | if (log_level < LogLevel::Info) { |