From d6da4b5cdb14bdfb998a51623b734a92934a6e91 Mon Sep 17 00:00:00 2001 From: Nick Steel Date: Thu, 31 Jan 2019 17:35:33 +0000 Subject: [PATCH] audio: Upgrade GST state mapping race logging from DEBUG to WARN. --- mopidy/audio/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index fb46d7ef..a837f790 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -256,7 +256,7 @@ class _Handler(object): target_state = _GST_STATE_MAPPING.get(self._audio._target_state) if target_state is None: # XXX: Workaround for #1430, to be fixed properly by #1222. - logger.debug('Race condition happened. See #1222 and #1430.') + logger.warn('Race condition happened. See #1222 and #1430.') return if target_state == new_state: target_state = None