Update README.md

This commit is contained in:
Gabi Melman 2021-07-14 13:51:23 +03:00 committed by GitHub
parent 6491abb519
commit a6987efaec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,8 +143,9 @@ void daily_example()
---
#### Backtrace support
```c++
// Loggers can store in a ring buffer all messages (including debug/trace) and display later on demand.
// When needed, call dump_backtrace() to see them
// Instead of actual logging, debug messages can be stored in a ring buffer for a later use.
// This is useful in order to display debug logs only when really nededed (e.g. when error happens).
// When needed, call dump_backtrace() to see them.
spdlog::enable_backtrace(32); // Store the latest 32 messages in a buffer. Older messages will be dropped.
// or my_logger->enable_backtrace(32)..