| 127 | |
| 128 | template <typename... Args> |
| 129 | inline void log_debug(std::format_string<Args...> fmt, Args&&... args) { |
| 130 | logger().debug(fmt, std::forward<Args>(args)...); |
| 131 | } |
| 132 | |
| 133 | template <typename... Args> |
| 134 | inline void log_info(std::format_string<Args...> fmt, Args&&... args) { |
no test coverage detected