- Improve error reporting

- Added Idle border colour option
This commit is contained in:
trigg 2022-04-15 13:46:52 +00:00
parent a6bd38bf8e
commit fa5a948197
3 changed files with 39 additions and 1 deletions

View file

@ -15,6 +15,7 @@ import os
import time
import sys
import re
import traceback
try:
# pylint: disable=wrong-import-position,wrong-import-order
import dbus # nopep8
@ -395,4 +396,5 @@ def entrypoint():
log.warning("Sent RPC command")
except Exception as ex:
log.error(ex)
log.error(traceback.format_exc())
sys.exit(1)