| 57 | */ |
| 58 | template <typename... Args> |
| 59 | inline void log_debug(const log_channel& channel, const std::string& message, Args&&... args) |
| 60 | { |
| 61 | get_logger().log(log_level::debug, channel.channel(), message, fmt::make_format_args(args...)); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * @param channel Log channel to use |
no test coverage detected