|
|
@ -23,9 +23,10 @@ inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
size_t queue_size,
|
|
|
|
size_t queue_size,
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms) :
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms,
|
|
|
|
|
|
|
|
const std::function<void()>& worker_teardown_cb) :
|
|
|
|
logger(logger_name, begin, end),
|
|
|
|
logger(logger_name, begin, end),
|
|
|
|
_async_log_helper(new details::async_log_helper(_formatter, _sinks, queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms))
|
|
|
|
_async_log_helper(new details::async_log_helper(_formatter, _sinks, queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms, worker_teardown_cb))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -34,19 +35,21 @@ inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
size_t queue_size,
|
|
|
|
size_t queue_size,
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms) :
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms,
|
|
|
|
async_logger(logger_name, sinks.begin(), sinks.end(), queue_size, overflow_policy, worker_warmup_cb, 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) {}
|
|
|
|
|
|
|
|
|
|
|
|
inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
inline spdlog::async_logger::async_logger(const std::string& logger_name,
|
|
|
|
sink_ptr single_sink,
|
|
|
|
sink_ptr single_sink,
|
|
|
|
size_t queue_size,
|
|
|
|
size_t queue_size,
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
const async_overflow_policy overflow_policy,
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
const std::function<void()>& worker_warmup_cb,
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms) :
|
|
|
|
const std::chrono::milliseconds& flush_interval_ms,
|
|
|
|
|
|
|
|
const std::function<void()>& worker_teardown_cb) :
|
|
|
|
async_logger(logger_name,
|
|
|
|
async_logger(logger_name,
|
|
|
|
{
|
|
|
|
{
|
|
|
|
single_sink
|
|
|
|
single_sink
|
|
|
|
}, queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms) {}
|
|
|
|
}, queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms, worker_teardown_cb) {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline void spdlog::async_logger::flush()
|
|
|
|
inline void spdlog::async_logger::flush()
|
|
|
|