| 21 | |
| 22 | template <class... Ts> |
| 23 | void debug(caf::format_string_with_location fmt_str, Ts&&... args) { |
| 24 | caf::logger::log(caf::log::level::debug, component, fmt_str, |
| 25 | std::forward<Ts>(args)...); |
| 26 | } |
| 27 | |
| 28 | inline auto debug() { |
| 29 | return caf::logger::log(caf::log::level::debug, component); |