-
Notifications
You must be signed in to change notification settings - Fork 6
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
How to let multiple independent processes to log into the same place? #26
Comments
I assume you mean send log into the same logger process. Then that logger process will write the log to its final destination. It includes two parts that involve TCP/UDP logger: For (1), you just start For (2), you also need to start your scripts with Considering the above scenario, I think we need to add a new param to |
I wrote one just like this yesterday. and the trick i used is adding I think maybe we can add an |
Hi @ZeroRin It should work now in v1.7.4. Please check the section central logging in the readme. If you have any problem with this, feel free to reopen the ticket. I close it for now. |
I'm running multiple python scripts at the same time, and deliberately want them to log into the same place.
I suppose this is doable as the module supports multiprocessing, but not sure what is the best practice of doing this.
The text was updated successfully, but these errors were encountered: