From 0f3ec94fbaf13d590837037ed54d62764643632d Mon Sep 17 00:00:00 2001 From: Teemu R Date: Wed, 9 May 2018 13:44:42 +0200 Subject: [PATCH] debug++ for multiple volume controls (#14349) Be less noisy for those who have more volume controls than one, mentioned in #13022. --- 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 955456f2465..5d0962775f0 100644 --- a/homeassistant/components/media_player/songpal.py +++ b/homeassistant/components/media_player/songpal.py @@ -151,8 +151,8 @@ class SongpalDevice(MediaPlayerDevice): return if len(volumes) > 1: - _LOGGER.warning("Got %s volume controls, using the first one", - volumes) + _LOGGER.debug("Got %s volume controls, using the first one", + volumes) volume = volumes[0] _LOGGER.debug("Current volume: %s", volume)