| 995 | */ |
| 996 | template<typename... T> |
| 997 | void LogInfoF(fmt::format_string<T...> format, T&&... args) |
| 998 | { |
| 999 | LogInfoFV(format, fmt::make_format_args(args...)); |
| 1000 | } |
| 1001 | |
| 1002 | /*! LogWarn writes text to the error console including a warning icon, |
| 1003 | and also shows a warning icon in the bottom pane. LogWarn corresponds to the log level: WarningLog. |