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 techtonik
Recipients techtonik
Date 2012-05-09.07:15:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336547719.78.0.572014137028.issue14760@psf.upfronthosting.co.za>
In-reply-to
Content
It would be convenient if instead of:

    hdlr = logging.StreamHandler()
    hglr.setLevel(logging.DEBUG)
    root.addHandler(hdlr)

it would be possible to write:

    root.addHandler(logging.StreamHandler().setLevel(logging.DEBUG))
History
Date User Action Args
2012-05-09 07:15:19techtoniksetrecipients: + techtonik
2012-05-09 07:15:19techtoniksetmessageid: <1336547719.78.0.572014137028.issue14760@psf.upfronthosting.co.za>
2012-05-09 07:15:19techtoniklinkissue14760 messages
2012-05-09 07:15:19techtonikcreate