flake8-pie icon indicating copy to clipboard operation
flake8-pie copied to clipboard

ensure correct logging calls

Open chdsbd opened this issue 3 years ago • 1 comments

# incorrect
logging.info("Login error for %s, %s", (user_id, name))

# correct
logging.info("Login error for %s, %s", user_id, name)

chdsbd avatar May 07 '21 02:05 chdsbd

Another thing to check for:

logging.info("foo %s%", "bar")
# raises ValueError: incomplete format

log.warning("foo bar buzz", 10)
# TypeError: not all arguments converted during string formatting
# Message: 'foo bar buzz'
# Arguments: (10,)

sbdchd avatar Jun 26 '21 00:06 sbdchd