Guido Kollerie <gu...@kollerie.com> added the comment:

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)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14031>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to