Help me with weird logging problem

Vinay Sajip vinay_sajip at yahoo.co.uk
Tue Mar 6 11:19:53 EST 2012


On Mar 6, 4:09 pm, J <dreadpiratej... at gmail.com> wrote:
>
> Any idea what I'm doing wrong?

Levels can be set on loggers as well as handlers, and you're only
setting levels on the handlers. The default level on the root logger
is WARNING. A logger checks its level first, and only if the event
passes that test will it be passed to the handlers (which will also
perform level tests).

So, a logger.setLevel(logging.DEBUG) should be all you need to add
before logging anything.

Regards,

Vinay Sajip



More information about the Python-list mailing list