| 68 | */ |
| 69 | template <typename... Args> |
| 70 | inline void log_info(const log_channel& channel, const std::string& message, Args&&... args) |
| 71 | { |
| 72 | get_logger().log(log_level::info, channel.channel(), message, fmt::make_format_args(args...)); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * @param channel Log channel to use |
no test coverage detected