Update README.md

This commit is contained in:
Gabi Melman 2024-03-29 20:24:21 +03:00 committed by GitHub
parent 8d6a121b73
commit aefd4510c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -197,13 +197,9 @@ It is a map of key-value pairs that can be set on a per-thread basis since it is
```c++
#include "spdlog/spdlog.h"
#include "spdlog/mdc"
{
spdlog::mdc::put("key1", "value1");
spdlog::mdc::put("key2", "value2");
// use the %& formatter flag to print all MDC values
spdlog::set_pattern("[%H:%M:%S %z] [%^%L%$] [%&] %v");
spdlog::info("Some log message with context");
}
...
spdlog::mdc::put("key1", "value1");
spdlog::mdc::put("key2", "value2");
```
---