You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The do-not-log-exceptions rule states that we should not log exceptions in levels other than debug. However, debug statements with exceptions passed in are still getting flagged.
exceptExceptionasex: # pylint: disable=broad-except_LOGGER.debug("Failed to log the account information: %s", ex, exc_info=True)
is still getting the following error when running next-pylint:
azure/identity/_internal/decorators.py:48: [C4766(do-not-log-exceptions), log_get_token.wrapper] Do not log exceptions. See Details: https://azure.github.io/azure-sdk/python_implementation.html#python-logging-sensitive-info
Expectation: This should not show up as a pylint error.
The
do-not-log-exceptions
rule states that we should not log exceptions in levels other than debug. However, debug statements with exceptions passed in are still getting flagged.For example, the following line from azure-identity:
is still getting the following error when running
next-pylint
:Expectation: This should not show up as a pylint error.
cc @l0lawrence
The text was updated successfully, but these errors were encountered: