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 markb
Recipients markb
Date 2017-01-10.02:47:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484016439.6.0.79629021761.issue29220@psf.upfronthosting.co.za>
In-reply-to
Content
I have code which does a logging.addLevelName(logging.INFO, '') so that the logging level name is not displayed in INFO messages, but is in all other levels. I have been running this code fine since many versions of Python 2 through to 3.5.

Now running with python 3.6.0-1 (on Arch Linux), the name is output in messages as "Level 20". Changing the empty string '' in the call above to a space ' ' is my current work-around.
History
Date User Action Args
2017-01-10 02:47:19markbsetrecipients: + markb
2017-01-10 02:47:19markbsetmessageid: <1484016439.6.0.79629021761.issue29220@psf.upfronthosting.co.za>
2017-01-10 02:47:19markblinkissue29220 messages
2017-01-10 02:47:18markbcreate