forked from Charcoal-SE/SmokeDetector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
excepthook.py
60 lines (52 loc) · 2.01 KB
/
excepthook.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# coding=utf-8
from datetime import datetime
import os
import traceback
import threading
import sys
from utcdate import UtcDate
# noinspection PyPackageRequirements
from websocket import WebSocketConnectionClosedException
import requests
from helpers import log
def log_exception(exctype, value, tb):
now = datetime.utcnow()
tr = '\n'.join((traceback.format_tb(tb)))
exception_only = ''.join(traceback.format_exception_only(exctype, value)).strip()
logged_msg = "{exception}\n{now} UTC\n{row}\n\n".format(exception=exception_only, now=now, row=tr)
log('error', logged_msg)
with open("errorLogs.txt", "a") as f:
f.write(logged_msg)
# noinspection PyProtectedMember
def uncaught_exception(exctype, value, tb):
delta = datetime.utcnow() - UtcDate.startup_utc_date
log_exception(exctype, value, tb)
if delta.total_seconds() < 180 and exctype != WebSocketConnectionClosedException\
and exctype != KeyboardInterrupt and exctype != SystemExit and exctype != requests.ConnectionError:
os._exit(4)
else:
os._exit(1)
def install_thread_excepthook():
"""
Workaround for sys.excepthook thread bug
From
http://spyced.blogspot.com/2007/06/workaround-for-sysexcepthook-bug.html
(https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1230540&group_id=5470).
Call once from __main__ before creating any threads.
If using psyco, call psyco.cannotcompile(threading.Thread.run)
since this replaces a new-style class method.
"""
init_old = threading.Thread.__init__
def init(self, *args, **kwargs):
init_old(self, *args, **kwargs)
run_old = self.run
# noinspection PyBroadException,PyShadowingNames
def run_with_except_hook(*args, **kw):
try:
run_old(*args, **kw)
except (KeyboardInterrupt, SystemExit):
raise
except:
sys.excepthook(*sys.exc_info())
self.run = run_with_except_hook
threading.Thread.__init__ = init