Hacker News new | ask | show | jobs
by gbajson 2587 days ago
Standard logging functions, without f-strings. So instead of: logging.debug(f'Problem with {x}') use: logging.debug('Problem with %s', x).