[BE]: Enable RUFF TRY400 rule - log.exception (#153473)

Change logging.error to logging.exception to log additional information when relevant.  A few places have slipped in logging.errors in try except since I last did a clean up here and the rule is stabilized so I am enabling it codebase wide. I have NOQA'd much of our custom exception stack trace handling for RPC calls and distributed and tried to a fix a few errors based on whether we immediately reraised it or if we didn't print any exception handling where it could be useful.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/153473
Approved by: https://github.com/albanD, https://github.com/cyyever
This commit is contained in:
Aaron Gokaslan
2025-05-15 13:36:59 +00:00
committed by PyTorch MergeBot
parent 7482eb217c
commit 4f4ecc583e
23 changed files with 51 additions and 46 deletions

View File

@ -16,7 +16,9 @@ ignore =
# these ignores are from flake8-comprehensions; please fix!
C407,
# these ignores are from flake8-logging-format; please fix!
G100,G101,G200
G100,G101,G200,
# G201 replaced by LOG400 in ruff
G201,
# these ignores are from flake8-simplify. please fix or ignore with commented reason
SIM105,SIM108,SIM110,SIM111,SIM113,SIM114,SIM115,SIM116,SIM117,SIM118,SIM119,SIM12,
# SIM104 is already covered by pyupgrade ruff