From baf08eee0974d2fbd309c602eb4f8f61a7c07320 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Thu, 29 Aug 2019 01:12:07 +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 831013cf..11bef5ca 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ 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 what happened: +// When needed, call dump_backtrace() to see them spdlog::enable_backtrace(32); // create ring buffer with capacity of 32 messages // or my_logger->enable_backtrace(32).. for(int i = 0; i < 100; i++)