spdlog question : is there a way not output timestamp?

1.1k Views Asked by At

my use case is to just use spdlog as my serialization library. For example. I would like to output json data, but the timestamp goes together with the json make it an invalid json syntax. Of course I could remove the time stamp programmatically later, but I am wondering whether if SPDLOG offers a way to skip the timestamp.

1

There are 1 best solutions below

0
On

To remove the Timing and Logger name from output, add the following at the start of your code:

spdlog::set_pattern("%v");

For more details check out : custom formatting