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 gkoller
Recipients gkoller, r.david.murray, vinay.sajip
Date 2012-02-16.15:59:46
SpamBayes Score 0.0012005691
Marked as misclassified No
Message-id <1329407987.79.0.166149497641.issue14031@psf.upfronthosting.co.za>
In-reply-to
Content
I see, could this be made to work if I explicitly request a logger instead?:

    logger = logging.getLogger('my_logger', style='{')
    logger.info('User {} logged in', username)

Maybe even for the root logger:

    root_logger = logging.getLogger(style='{')
    root_logger.info('User {} logged in', username)
History
Date User Action Args
2012-02-16 15:59:47gkollersetrecipients: + gkoller, vinay.sajip, r.david.murray
2012-02-16 15:59:47gkollersetmessageid: <1329407987.79.0.166149497641.issue14031@psf.upfronthosting.co.za>
2012-02-16 15:59:46gkollerlinkissue14031 messages
2012-02-16 15:59:46gkollercreate