Closed rcschrg closed 1 year ago
We often use logging.debug(f"ABC {abc}"), which can be dangerous and expensive. In this issue all occurrences shall be replaced by the %s type logging.debug("ABC %s", abc)
mentioned in commit a5bad6046702a59aba6bcf57947befb2d8a8bfae
We often use logging.debug(f"ABC {abc}"), which can be dangerous and expensive. In this issue all occurrences shall be replaced by the %s type logging.debug("ABC %s", abc)