| 1023 | */ |
| 1024 | template<typename... T> |
| 1025 | void LogErrorF(fmt::format_string<T...> format, T&&... args) |
| 1026 | { |
| 1027 | LogErrorFV(format, fmt::make_format_args(args...)); |
| 1028 | } |
| 1029 | |
| 1030 | /*! LogAlert pops up a message box displaying the alert message and logs to the error console. |
| 1031 | LogAlert corresponds to the log level: AlertLog. |
no outgoing calls
no test coverage detected