Skip to content

Instantly share code, notes, and snippets.

@txomon
Last active January 1, 2024 19:38
Show Gist options
  • Save txomon/f170cb02d4362d2887cb89706147c9a6 to your computer and use it in GitHub Desktop.
Save txomon/f170cb02d4362d2887cb89706147c9a6 to your computer and use it in GitHub Desktop.
Snippet to ease debugging exceptions
import sys, traceback
def exception_hook(e, value, tb):
for line in traceback.TracebackException(
type(value), value, tb, capture_locals=True
).format(chain=True):
print(line, end="")
sys.excepthook = exception_hook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment