diff --git a/plexpy/webstart.py b/plexpy/webstart.py index a4b5ab69..1818d4f8 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -263,8 +263,8 @@ def initialize(options): cherrypy.engine.signals.subscribe() cherrypy.engine.start() cherrypy.engine.block() - except IOError: - logger.error("Tautulli WebStart :: Failed to start on port: %i. Is something else running?" % options['http_port']) + except IOError as e: + logger.error("Tautulli WebStart :: Failed to start Tautulli: %s", e) sys.exit(1) cherrypy.server.wait()