|
|
|
|
|
by altncatchfire
1977 days ago
|
|
I dont think this is true. I just tried with the following program and it runs as expected (Run on Python 3.7.9). import logging
got = "%d"
logging.warning(f"hi {got}")
logging.debug(f"hi {got}")
Output WARNING:root:hi %d
DEBUG:root:hi %d
|
|