python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
query the spdlog logger name
say we build our spdlog object as the following?
logger = std::make_shared<spdlog::logger>("some name", sink_list.begin(), sink_list.end());
Is there a method such as logger->get_n...
azerila
Votes: 0
Answers: 1
Is it possible to configure spdlog from a file like log4j or log4cxx?
I have experience of log4j, and have used a port of it called log4net in c#. In both cases I find it very useful to configure loggers at run time, by means of logger config files. For example you can ...
Paulus
Votes: 0
Answers: 1
What is the max_files in spdlog rotating files?
My understanding of this is that the file will be limited to the specified size. But I don't understand the max_files = 3, are we going to
have one or three files?
I run the example here and got one f...
KcFnMi
Votes: 0
Answers: 1
How to play with spdlog?
I downloaded and followed the example 1.
Moved to example 2 (Create stdout/stderr logger object) and got stuck. Actually I can run it as it is but if I change
spdlog::get("console") to spdlo...
KcFnMi
Votes: 0
Answers: 1