From fca80700193a5ca48845a9ccd60c29cf74df0dba Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Thu, 15 Jan 2015 12:41:35 +0200 Subject: [PATCH] Comments --- include/spdlog/spdlog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index fa8f6cf2..06168f91 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -64,7 +64,7 @@ void set_level(level::level_enum log_level); // Turn on async mode (off by default) and set the queue size for each async_logger. // effective only for loggers created after this call. -// queue_size: size of queue (must be power of 2). The queue will pre allocate queue_size entries upon construction. +// queue_size: size of queue (must be power of 2). Each created logger will pre allocate queue_size entries upon construction. // async_overflow_policy (optional): // async_overflow_policy::block_retry (default policy, if queue is full, block until queue has room for the new log entry) // async_overflow_policy::discard_log_msg (never block and discard any new messages when queue overflows)