From baec3ec1fb615da9ed8947fac0fdc440b6d64875 Mon Sep 17 00:00:00 2001 From: gabi Date: Fri, 7 Nov 2014 16:21:17 +0200 Subject: [PATCH] patch async_sink --- include/spdlog/sinks/async_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/async_sink.h b/include/spdlog/sinks/async_sink.h index ff625a01..89b4696a 100644 --- a/include/spdlog/sinks/async_sink.h +++ b/include/spdlog/sinks/async_sink.h @@ -96,7 +96,7 @@ private: /////////////////////////////////////////////////////////////////////////////// inline spdlog::sinks::async_sink::async_sink(const q_type::size_type max_queue_size) :_sinks(), - _active(false), + _active(true), _q(max_queue_size), _back_thread(&async_sink::_thread_loop, this) {}