Skip to content
Snippets Groups Projects
Commit 1cd3a481 authored by David Trattnig's avatar David Trattnig
Browse files

Verbose error handling.

parent 41dc90aa
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,8 @@ class StartupThread(threading.Thread):
except NoActiveScheduleException as e:
self.logger.info("Nothing scheduled at startup time. Please check if there are follow-up schedules.")
except Exception as e:
self.logger.error(SimpleUtil.red("Error while initializing the soundsystem: " + str(e)))
self.logger.error(SimpleUtil.red("Error while initializing the soundsystem: " + str(e)), e)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment