Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[flake8-logging] Add ExcInfoOutsideExceptionHandler (LOG014) #14682

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

snowdrop4
Copy link
Contributor

@snowdrop4 snowdrop4 commented Nov 29, 2024

Summary

Add ExcInfoOutsideExceptionHandler (LOG014) from the flake8-logging plugin (parent issue #7248).

This rule detects the exc_info kwarg being set to True outside of an exception handling block, which results in unwanted logging output.

I did some mild refactoring by adding a helpers.rs in the crate to reduce duplication.

Test Plan

Lots of fixtures.

@snowdrop4 snowdrop4 force-pushed the AVK/ExcInfoOutsideExceptionHandler branch from 5697248 to 4584733 Compare November 29, 2024 16:59
@snowdrop4 snowdrop4 force-pushed the AVK/ExcInfoOutsideExceptionHandler branch from 4584733 to 1a602a4 Compare November 29, 2024 17:03
@snowdrop4 snowdrop4 changed the title New Rule: LOG014 from flake8-logging [flake8-logging] Add LOG014 Nov 29, 2024
@snowdrop4 snowdrop4 changed the title [flake8-logging] Add LOG014 [flake8-logging] Add ExcInfoOutsideExceptionHandler (LOG014) Nov 29, 2024
Copy link
Contributor

ruff-ecosystem results

Linter (stable)

✅ ecosystem check detected no linter changes.

Linter (preview)

ℹ️ ecosystem check detected linter changes. (+15 -0 violations, +0 -0 fixes in 4 projects; 51 projects unchanged)

apache/airflow (+1 -0 violations, +0 -0 fixes)

ruff check --no-cache --exit-zero --ignore RUF9 --output-format concise --preview --select ALL

+ task_sdk/src/airflow/sdk/execution_time/supervisor.py:527:9: LOG014 Use of `exc_info` outside an exception handler

apache/superset (+12 -0 violations, +0 -0 fixes)

ruff check --no-cache --exit-zero --ignore RUF9 --output-format concise --preview --select ALL

+ superset/commands/report/base.py:105:13: LOG014 Use of `exc_info` outside an exception handler
+ superset/db_engine_specs/hive.py:587:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/sql_lab.py:136:5: LOG014 Use of `exc_info` outside an exception handler
+ superset/sql_lab.py:140:5: LOG014 Use of `exc_info` outside an exception handler
+ superset/tasks/cache.py:270:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/utils/core.py:572:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/views/error_handling.py:140:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/views/error_handling.py:145:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/views/error_handling.py:151:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/views/error_handling.py:160:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/views/error_handling.py:187:9: LOG014 Use of `exc_info` outside an exception handler
+ superset/views/error_handling.py:209:9: LOG014 Use of `exc_info` outside an exception handler

rotki/rotki (+1 -0 violations, +0 -0 fixes)

ruff check --no-cache --exit-zero --ignore RUF9 --output-format concise --preview

+ rotkehlchen/api/server.py:431:9: LOG014 Use of `exc_info` outside an exception handler

zulip/zulip (+1 -0 violations, +0 -0 fixes)

ruff check --no-cache --exit-zero --ignore RUF9 --output-format concise --preview --select ALL

+ zerver/lib/push_notifications.py:1330:17: LOG014 Use of `exc_info` outside an exception handler

Changes by rule (1 rules affected)

code total + violation - violation + fix - fix
LOG014 15 15 0 0 0

@AlexWaygood AlexWaygood added rule Implementing or modifying a lint rule preview Related to preview mode features labels Nov 29, 2024
try:
a = 1 * 2
except Exception:
banana()
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ecosystem checks are turning up a few instances just like this.

Technically in this case, if we are able to tell that banana() is only ever called from inside an exception handling block, then we could mark this as okay. But I don't think it's possible to check all calling sites?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's possible, but you'd need to move the rule to crates/ruff_linter/src/checkers/ast/analyze/bindings.rs rather than crates/ruff_linter/src/checkers/ast/analyze/expression.rs. The difference is that the rules executed from bindings.rs are run after the entire semantic model has been built, so they have more information available to them in some ways: they're able to iterate through all the references to a binding as well as looking at the original binding itself. You can see an example of how to do it in a PR I merged this morning: #14661.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh. I'll revise it to include that check then. Thanks.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no problem, thanks for the PR!

Copy link
Contributor Author

@snowdrop4 snowdrop4 Dec 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgive me if I'm misunderstanding, but I don't think moving it to bindings.rs works?

An expression like logging.info("foo", exc_info=True) isn't a binding, so if I move my lint function call to bindings.rs, then the only situation the lint could possibly apply would be x = logging.info("foo", exc_info=True) or (x := logging.info("foo", exc_info=True)), which no one writes.

Is it possible to make a new version of expression.rs that's called after the entire semantic model has been built? I don't think there's any way around calling the lint function on expressions, since the lint is designed to find bad function calls.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An expression like logging.info("foo", exc_info=True) isn't a binding, so if I move my lint function call to bindings.rs, then the only situation the lint could possibly apply would be x = logging.info("foo", exc_info=True) or (x := logging.info("foo", exc_info=True)), which no one writes.

ah, you're quite right.

I suppose what would be best would be to collect all logging.(...) calls into a Vec stored on this struct as we traverse the AST in https://github.com/astral-sh/ruff/blob/main/crates/ruff_linter/src/checkers/ast/mod.rs. Then after the AST has been fully visited and the SemanticModel has been fully constructed, we can call this rule on each logging(...) call we stored in the Vec.

@dylwil3 dylwil3 self-requested a review December 4, 2024 18:14
@dylwil3
Copy link
Collaborator

dylwil3 commented Dec 5, 2024

@snowdrop4 Thanks for working on this!

Would you, by any chance, be able to walk me through (at least some of) the ecosystem results and help me understand why/whether they are true positives?

I'm a little worried (probably unnecessarily) that a library may define a function in a publicly accessible namespace

def foo():
    # <-- function logic here --- >
    
    # exc_info outside of except
    logging.exception(..., exc_info=True)

and then any of the following (or a mixture) may occur:

  1. foo is imported in a different file and called inside an except block.
  2. foo is called from the body of bar which is called from the body of baz... etc. which is then called inside an except block.
  3. foo has a decorator which secretly inserts a try/except.
  4. foo is not called in an except block in the whole library, but it is meant to be consumed by users within an except block.

I don't think I know enough about the use-cases for specifying exc_info=True outside of an except block to tell whether people are really doing it by accident or intentionally for something like 1-4.

I don't think there's a problem with performing this lint for functions defined inside another function scope, since they cannot be used elsewhere, but for the above case I'm less sure.

Apologies if I'm making a mountain out of a molehill here - you probably know more than me about Python logging practices and can tell me I'm off base here!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
preview Related to preview mode features rule Implementing or modifying a lint rule
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants