From 2a2318b7f65a9f709943f0b18bec817c4784ee45 Mon Sep 17 00:00:00 2001 From: Teemu R Date: Sun, 13 Jan 2019 21:31:08 +0100 Subject: [PATCH] warning -> debug, this should not have been visible to users (#20061) --- homeassistant/components/media_player/songpal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/media_player/songpal.py b/homeassistant/components/media_player/songpal.py index c79470a82fe..165ef668a95 100644 --- a/homeassistant/components/media_player/songpal.py +++ b/homeassistant/components/media_player/songpal.py @@ -154,8 +154,8 @@ class SongpalDevice(MediaPlayerDevice): _LOGGER.debug("New active source: %s", self._active_source) await self.async_update_ha_state() else: - _LOGGER.warning("Got non-handled content change: %s", - content) + _LOGGER.debug("Got non-handled content change: %s", + content) async def _power_changed(power: PowerChange): _LOGGER.debug("Power changed: %s", power)