Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: is it safe to use TermLogger across threads without additional synchronisation? #146

Closed
cyqsimon opened this issue Jan 29, 2024 · 2 comments

Comments

@cyqsimon
Copy link

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.

@Drakulix
Copy link
Owner

Drakulix commented Jan 30, 2024

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).

@cyqsimon
Copy link
Author

That's good to know. I've got no more questions.

Thank you again for the swift response.

cyqsimon added a commit to imsnif/bandwhich that referenced this issue Mar 25, 2024
- simplelog is already thread safe
- see Drakulix/simplelog.rs#146
cyqsimon added a commit to imsnif/bandwhich that referenced this issue Mar 25, 2024
* Revert 89e1140

- simplelog is already thread safe
- see Drakulix/simplelog.rs#146

* Write changelog

* Fix import for MacOS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants