logging-too-many-args (PLE1205)
Added in v0.0.252 · Related issues · View source
Derived from the Pylint linter.
What it does
Checks for too many positional arguments for a logging format string.
Why is this bad?
A TypeError will be raised if the statement is run.
Example
import logging
try:
    function()
except Exception as e:
    logging.error("Error occurred: %s", type(e), e)
    raise
Use instead: