Y
Hacker News
new
|
ask
|
show
|
jobs
by
bonoboTP
2587 days ago
What instead?
1 comments
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).
link