| 31 | |
| 32 | template <class... Ts> |
| 33 | void info(caf::format_string_with_location fmt_str, Ts&&... args) { |
| 34 | caf::logger::log(caf::log::level::info, component, fmt_str, |
| 35 | std::forward<Ts>(args)...); |
| 36 | } |
| 37 | |
| 38 | inline auto info() { |
| 39 | return caf::logger::log(caf::log::level::info, component); |
no test coverage detected