diff --git a/mopidy/commands.py b/mopidy/commands.py index 2a0b6f48..237ec86b 100644 --- a/mopidy/commands.py +++ b/mopidy/commands.py @@ -280,6 +280,8 @@ class RootCommand(Command): exit_status_code = 1 except KeyboardInterrupt: logger.info('Interrupted. Exiting...') + except Exception: + logger.exception('Uncaught exception') finally: loop.quit() self.stop_frontends(frontend_classes)