| 51 | |
| 52 | template <class... Ts> |
| 53 | void error(caf::format_string_with_location fmt_str, Ts&&... args) { |
| 54 | caf::logger::log(caf::log::level::error, component, fmt_str, |
| 55 | std::forward<Ts>(args)...); |
| 56 | } |
| 57 | |
| 58 | inline auto error() { |
| 59 | return caf::logger::log(caf::log::level::error, component); |