You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I call TermLogger::init at the start of the main thread then spin up multiple worker threads, is it safe to use the usual logging macros in these threads without additional synchronisation?
In other words, is it possible for two threads to print at the same time, and instead of producing two good lines, produce two interleaved lines of garbage? (I suspect no but just want confirmation.)
And lastly, what about SimpleLogger and WriteLogger? Do they behave the same?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Yes, all loggers you mentioned to have an internal lock that prevents log messages from that same logger to interleave.
That said if you initialize multiple loggers in parallel (instead of using init to set a single global one) you can get interleaved lines, if they write to the same file (e.g. stdout).
After I call
TermLogger::init
at the start of the main thread then spin up multiple worker threads, is it safe to use the usual logging macros in these threads without additional synchronisation?In other words, is it possible for two threads to print at the same time, and instead of producing two good lines, produce two interleaved lines of garbage? (I suspect no but just want confirmation.)
And lastly, what about
SimpleLogger
andWriteLogger
? Do they behave the same?Thanks in advance.
The text was updated successfully, but these errors were encountered: