7 ms·
Standard logging functions, without f-strings. So instead of: logging.debug(f'Problem with {x}') use: logging.debug('Problem with %s', x).
by gbajson 7y ago
Standard logging functions, without f-strings.
So instead of:
logging.debug(f'Problem with {x}')
use:
logging.debug('Problem with %s', x).