This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
forked from Charcoal-SE/SmokeDetector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcepthook.py
52 lines (46 loc) · 1.77 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
from datetime import datetime
import os
import traceback
import threading
import sys
from utcdate import UtcDate
from websocket import WebSocketConnectionClosedException
import requests
def uncaught_exception(exctype, value, tb):
now = datetime.utcnow()
delta = now - UtcDate.startup_utc_date
seconds = delta.total_seconds()
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)
print(logged_msg)
with open("errorLogs.txt", "a") as f:
f.write(logged_msg)
if 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
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