[issue30995] Support logging.getLogger(style='{')

Steven Warwick report at bugs.python.org
Sun Sep 24 13:34:27 EDT 2017


Steven Warwick added the comment:

you probably have already considered this, but I just wanted to ask if it might be worth considering turning the problem "upside down" to make things easier.

  I'm interpreting the problem that there are variables we'd like to add to the output log that are provided inside the logger, which is why we need to use a specific type of format string to make sure you add them correctly.   If instead, these same variables are simply exposed as logger attributes, we could just create the complete formatted string when we call the logger.  

logger.info( " {:s} {:s} ", logger.name, logger.module ) 

does this make any sense?

----------
nosy: +sdwarwick

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue30995>
_______________________________________


More information about the Python-bugs-list mailing list