| 137 | |
| 138 | template <typename... Args> |
| 139 | inline void log_warn(std::format_string<Args...> fmt, Args&&... args) { |
| 140 | logger().warn(fmt, std::forward<Args>(args)...); |
| 141 | } |
| 142 | |
| 143 | template <typename... Args> |
| 144 | inline void log_error(std::format_string<Args...> fmt, Args&&... args) { |
no test coverage detected