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 leorochael
Recipients leorochael, vinay.sajip
Date 2009-12-17.23:01:06
SpamBayes Score 1.1784093e-05
Marked as misclassified No
Message-id <1261090867.91.0.497119576598.issue7535@psf.upfronthosting.co.za>
In-reply-to
Content
At the very least this is a documentation bug. By reading the std docs
on the logging module [1] one gets the impression that if a log record
gets to a certain logger, even if percolated from more specific loggers,
then the filters to that logger should be involved and even get the
chance to change the log record.

[1] http://docs.python.org/library/logging.html

This is reinforced by the documentation and the implementation of the
logging.Filter class, which is supposed to filter-out messages of more
specific loggers, but which would never actually filter out anything if
applied to a Logger of the same "name" (as opposed to a Handler, since
filter handlers do get called for log records of more specific loggers).
History
Date User Action Args
2009-12-17 23:01:07leorochaelsetrecipients: + leorochael, vinay.sajip
2009-12-17 23:01:07leorochaelsetmessageid: <1261090867.91.0.497119576598.issue7535@psf.upfronthosting.co.za>
2009-12-17 23:01:06leorochaellinkissue7535 messages
2009-12-17 23:01:06leorochaelcreate