Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created January 27, 2017 14:24
Show Gist options
  • Save fchevitarese/b1ddfa7dbc2ea615621ece53bfe94e6b to your computer and use it in GitHub Desktop.
Save fchevitarese/b1ddfa7dbc2ea615621ece53bfe94e6b to your computer and use it in GitHub Desktop.
custom_exception_handler.py
# encoding: utf-8
def custom_exception_handler(job, exc_type, exc_value, traceback):
with open('test.log', 'rw') as f:
f.write(job)
f.write(exc_type)
f.write(exc_value)
f.write(traceback)
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment