| 41 | |
| 42 | template <class... Ts> |
| 43 | void warning(caf::format_string_with_location fmt_str, Ts&&... args) { |
| 44 | caf::logger::log(caf::log::level::warning, component, fmt_str, |
| 45 | std::forward<Ts>(args)...); |
| 46 | } |
| 47 | |
| 48 | inline auto warning() { |
| 49 | return caf::logger::log(caf::log::level::warning, component); |
no test coverage detected