This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Grazfather x
Recipients Grazfather x
Date 2016-03-10.22:28:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457648926.18.0.758256853063.issue26533@psf.upfronthosting.co.za>
In-reply-to
Content
logging.config.FileConfig has a kwarg 'disable_existing_loggers' that defaults to False, but when true will allow you to load a config and not disable all other existing loggers.

logging.config.listen uses FileConfig, but has no option to provide this keyword to it, which is a problem when a logger hierarchy is build using logger.getLogger(__name__) (which is recommended in the documentation).

Proposal: Add kwarg 'disable_existing_loggers' to logging.config.listen which is passed to fileConfig.
History
Date User Action Args
2016-03-10 22:28:46Grazfather xsetrecipients: + Grazfather x
2016-03-10 22:28:46Grazfather xsetmessageid: <1457648926.18.0.758256853063.issue26533@psf.upfronthosting.co.za>
2016-03-10 22:28:46Grazfather xlinkissue26533 messages
2016-03-10 22:28:45Grazfather xcreate