From 19fae929b6850f23312e456c295e338c380e3ac1 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 21 Dec 2014 03:12:35 +0200 Subject: [PATCH] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 76900c44..629ec0b6 100644 --- a/README.md +++ b/README.md @@ -99,11 +99,9 @@ int main(int, char* []) SPDLOG_TRACE(console, "Enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}", 1, 3.23); SPDLOG_DEBUG(console, "Enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}", 1, 3.23); - - // + // Asynchronous logging is very fast.. // Just call spdlog::set_async_mode(q_size) and all created loggers from now on will be asynchronous.. - // size_t q_size = 1048576; //queue size must be power of 2 spdlog::set_async_mode(q_size); auto async_file= spd::daily_logger_st("async_file_logger", "logs/async_log.txt");