mpris: Frontend setup failure should only yield a warning

This commit is contained in:
Stein Magnus Jodal 2013-08-07 13:09:32 +02:00
parent dbd88b0857
commit 74ab07cc6c

View File

@ -34,7 +34,7 @@ class MprisFrontend(pykka.ThreadingActor, CoreListener):
self.mpris_object = objects.MprisObject(self.config, self.core)
self._send_startup_notification()
except Exception as e:
logger.error('MPRIS frontend setup failed (%s)', e)
logger.warning('MPRIS frontend setup failed (%s)', e)
self.stop()
def on_stop(self):