From 09d729bfba15d2d7e6e861fcbb484f3de0b93e87 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 22 Dec 2019 19:46:56 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f425fe14..a2f79bea 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ spdlog::dump_backtrace(); // log them now! show the last 32 messages #### Periodic flush ```c++ // periodically flush all *registered* loggers every 3 seconds: -// warning: only use if all your loggers are thread safe! +// warning: only use if all your loggers are thread safe ("_mt" loggers) spdlog::flush_every(std::chrono::seconds(3)); ```