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 vdham
Recipients vdham
Date 2008-04-29.15:08:26
SpamBayes Score 0.052152026
Marked as misclassified No
Message-id <1209481716.33.0.891360600754.issue2718@psf.upfronthosting.co.za>
In-reply-to
Content
logging.basicConfig seems to ignore level=0:

>>> import logging
>>> logging.basicConfig(level=0)
>>> logging.getLogger().getEffectiveLevel()
30


>>> import logging
>>> logging.basicConfig(level=10)
>>> logging.getLogger().getEffectiveLevel()
10
History
Date User Action Args
2008-04-29 15:08:37vdhamsetspambayes_score: 0.052152 -> 0.052152026
recipients: + vdham
2008-04-29 15:08:36vdhamsetspambayes_score: 0.052152 -> 0.052152
messageid: <1209481716.33.0.891360600754.issue2718@psf.upfronthosting.co.za>
2008-04-29 15:08:32vdhamlinkissue2718 messages
2008-04-29 15:08:31vdhamcreate