Unverified Commit 09d729bf authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Update README.md

parent 9caaca74
...@@ -158,7 +158,7 @@ spdlog::dump_backtrace(); // log them now! show the last 32 messages ...@@ -158,7 +158,7 @@ spdlog::dump_backtrace(); // log them now! show the last 32 messages
#### Periodic flush #### Periodic flush
```c++ ```c++
// periodically flush all *registered* loggers every 3 seconds: // 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)); spdlog::flush_every(std::chrono::seconds(3));
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment