-
I can take a guess but the documentation doesn't define it (that I could find so far). I want to know the details of what this means in the context of |
Beta Was this translation helpful? Give feedback.
Answered by
tt4g
Oct 5, 2021
Replies: 1 comment
-
Sink will process log messages in a dedicated thread. See Wiki for more details: https://github.com/gabime/spdlog/wiki/6.-Asynchronous-logging |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sketch34
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sink will process log messages in a dedicated thread.
Synchronous loggers block the calling thread until the I/O is finished when sink writes a log message to a file, but asynchronous loggers do not block.
See Wiki for more details: https://github.com/gabime/spdlog/wiki/6.-Asynchronous-logging