1
mirror of https://github.com/home-assistant/core synced 2024-09-09 12:51:22 +02:00

debug++ for multiple volume controls (#14349)

Be less noisy for those who have more volume controls than one, mentioned in #13022.
This commit is contained in:
Teemu R 2018-05-09 13:44:42 +02:00 committed by Fabian Affolter
parent 2c566072f5
commit 0f3ec94fba

View File

@ -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)