From 2e4e80f2a9f1bbab85f5301a8eb520a054c4ce90 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Tue, 17 Jul 2018 15:27:21 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a778fd5b..b82add92 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,7 @@ void daily_example() void async_example() { // default thread pool settings can be modified *before* creating the async logger: - // spdlog::init_thread_pool(32768, 1); // queue with 32k items and 1 backing thread. + // spdlog::init_thread_pool(8192, 1); // queue with 8k items and 1 backing thread. auto async_file = spdlog::basic_logger_mt("async_file_logger", "logs/async_log.txt"); // alternatively: // auto async_file = spdlog::create_async("async_file_logger", "logs/async_log.txt");