| 1009 | */ |
| 1010 | template<typename... T> |
| 1011 | void LogWarnF(fmt::format_string<T...> format, T&&... args) |
| 1012 | { |
| 1013 | LogWarnFV(format, fmt::make_format_args(args...)); |
| 1014 | } |
| 1015 | |
| 1016 | /*! LogError writes text to the error console and pops up the error console. Additionally, |
| 1017 | Errors in the console log include a error icon. LogError corresponds to the log level: ErrorLog. |