Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
Improve the more elaborate multiprocessing example in the logging cookbook#9326
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Please revert the whitespace /PEP-8 changes, which are not applicable to the specific example we discussed. Just keep the changes within the specific example script. |
…kbook* Remove the unused detailed formatter in the config_initial dictionary.* Modify the implementation of the method of the MyHandler class to consider the loggers' levels in the config_listener dictionary.
Done. |
OK, thanks. Just as a general suggestion - please avoid making stylistic changes which aren't specific to the issue being addressed. For example, you have re-ordered some dictionary keys, added blank lines and removed trailing commas, where none of these changes were needed in order to (a) remove the unused formatter and (b) respect the logger level while dispatching events. While I'm not asking you to revert these, it's generally best to minimise noise in PRs - because it makes life easier for reviewers not to have to review stylistic changes which have no impact on the functionality changes being addressed. |
Uh oh!
There was an error while loading.Please reload this page.
This pull request will:
detailed
formatter in theconfig_initial
dictionary;handle
method of theMyHandler
class to consider the loggers' levels in theconfig_listener
dictionary.