feat: added an error collector

This commit is contained in:
RTAkland
2021-12-20 21:24:26 +08:00
parent fe8d850422
commit c2bc49b0d4

View File

@@ -310,3 +310,6 @@ def process_request():
except BrokenPipeError:
Logger.critical('Link speed was too fast! Subprocess:webserver exited')
sys.exit(1)
except IOError:
Logger.critical('An IO Error')
sys.exit(1)