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 jb098
Recipients jb098, larry
Date 2016-10-14.15:09:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476457754.13.0.399529764318.issue28443@psf.upfronthosting.co.za>
In-reply-to
Content
The methods on the Logger class e.g. logger.debug all accept **kwargs, these are passed to the _log method but they are never used.

If _log attached them as an attribute to the LogRecord object, it would allow for creation of more powerful Filter objects to be created.

You would then be able to filter log lines based on arbitrary keyword arguments.

I've attached a patch along with tests that I think would be a sensible addition and I think that this shouldn't impact existing users of the module.
History
Date User Action Args
2016-10-14 15:09:14jb098setrecipients: + jb098, larry
2016-10-14 15:09:14jb098setmessageid: <1476457754.13.0.399529764318.issue28443@psf.upfronthosting.co.za>
2016-10-14 15:09:14jb098linkissue28443 messages
2016-10-14 15:09:13jb098create