| 81 | void log(log_level level, const std::string& channel, const std::string& message, const fmt::format_args& args) const; |
| 82 | |
| 83 | void add(std::shared_ptr<logger_adapter> adapter) |
| 84 | { |
| 85 | adapters_.push_back(std::move(adapter)); |
| 86 | } |
| 87 | |
| 88 | void remove(const std::string& id); |
| 89 |
no test coverage detected