-
Notifications
You must be signed in to change notification settings - Fork 43
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
Use exc_info for exception logging #643
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Codecov Report
@@ Coverage Diff @@
## main #643 +/- ##
==========================================
- Coverage 93.29% 93.28% -0.02%
==========================================
Files 41 41
Lines 1670 1667 -3
Branches 210 210
==========================================
- Hits 1558 1555 -3
Misses 89 89
Partials 23 23
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@feluelle I need this. can we merge this? |
@pankajastro yes. I wanted to wait until all checks are done. |
* Use exc_info for exception logging * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Remove logging import from bigquery Co-authored-by: feluelle <felix.uellendall@astronomer.io> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Description
What is the current behavior?
Exceptions are currently being printed in
logging.warning
withoutexc_info
.related: #638
What is the new behavior?
Use exc_info for exception logging
Does this introduce a breaking change?
No
Checklist