Hacker News new | ask | show | jobs
by bonoboTP 2587 days ago
What instead?
1 comments

Standard logging functions, without f-strings. So instead of: logging.debug(f'Problem with {x}') use: logging.debug('Problem with %s', x).