|
|
|
@ -31,13 +31,13 @@ inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
|
sinks_init_list sinks,
|
|
|
|
|
sinks_init_list sinks_list,
|
|
|
|
|
size_t queue_size,
|
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms,
|
|
|
|
|
const std::function<void()>& worker_teardown_cb) :
|
|
|
|
|
async_logger(logger_name, sinks.begin(), sinks.end(), queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms, worker_teardown_cb) {}
|
|
|
|
|
async_logger(logger_name, sinks_list.begin(), sinks_list.end(), queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms, worker_teardown_cb) {}
|
|
|
|
|
|
|
|
|
|
inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
|
sink_ptr single_sink,
|
|
|
|
|