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 Alzakath
Recipients Alzakath, raduv, vinay.sajip
Date 2013-03-19.00:34:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363653256.47.0.0905530619119.issue17453@psf.upfronthosting.co.za>
In-reply-to
Content
My complete configuration is this:

[loggers]
keys = app_admin,root,app_test_py3
[logger_root]
handlers = ""
[formatters]
keys = app_admin,app_test_py3
[handlers]
keys = app_admin,app_test_py3
[logger_app_admin]
propagate = 1
handlers = app_admin
qualname = nagare.application.admin
level = INFO
[handler_app_admin]
formatter = app_admin
class = StreamHandler
args = (sys.stderr,)
[formatter_app_admin]
format = %(asctime)s - %(name)s - %(levelname)s - %(message)s
[logger_app_test_py3]
propagate = 1
handlers = app_test_py3
qualname = nagare.application.test_py3
level = INFO
[formatter_app_test_py3]
format = %(asctime)s - %(name)s - %(levelname)s - %(message)s
[handler_app_test_py3]
formatter = app_test_py3
class = StreamHandler
args = (sys.stderr,)

I wanted to provided a non-working configuration as small as possible, that was accepted by python 2.7.

It seems you are right there is a problem with this configuration as it shuts down logging in python 2.7. It looks like i have a bug in my configuration generation.

By the way the patch restores python 2.7 behavior as expected, thanks.
History
Date User Action Args
2013-03-19 00:34:16Alzakathsetrecipients: + Alzakath, vinay.sajip, raduv
2013-03-19 00:34:16Alzakathsetmessageid: <1363653256.47.0.0905530619119.issue17453@psf.upfronthosting.co.za>
2013-03-19 00:34:16Alzakathlinkissue17453 messages
2013-03-19 00:34:16Alzakathcreate