-
Notifications
You must be signed in to change notification settings - Fork 54
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
print environment details upon stack trace #101
Conversation
Yes, this has a potential to pollute the interactive output, we should already handle
|
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.
Great work @s-ff ! I've left comments for your review.
This commit: - renames utils.py to jeputils.py avoid confusion. - reformats environment details string as a format string - enables getVersion method to be called statically
Hi @mike-hunhoff, I addressed these comments in 46f45fd. On a side note, while I initially started working on this, I noticed that user custom hooks set via |
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.
Nice work @s-ff , I've left additional comments for your review.
Nice find @s-ff , please open a new issue that links to your comment so this can be investigated further in the future. |
@s-ff please re-request my review when you're ready and we'll get this approved + merged 🥳 |
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 🚀
This PR closes #66.
My main concern here is that the exception handler
log_env_details
will get executed for everyException
. Do you suggest we whitelist some exceptions?