-
Notifications
You must be signed in to change notification settings - Fork 26
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
Add pid in Logging msg for multithread #42
Comments
hey, just out of interest: do you know how I can obtain logging output from a worker, i.e. added via |
The only workaround that worked for me was to put the PID of the worker in the message. Using the PID I can identify which worker wrote the message, but I have a unique log file. |
I get no output at all from a worker process. i can see |
scrap that, I found out how it works. but yeah, I agree that the worker identity would be very helpful to see. |
After starting the workers you have to call Logging.configure(level=Logging.DEBUG). |
Add pid in the Logging message is an easy way to identify which thread belongs in an multithreaded execution.
The text was updated successfully, but these errors were encountered: