Set Onkyo reset log to debug instead of info (#22369)

Onkyo logs this message somewhat frequently, and its spammy, so lets make it a debug message instead of info. 

See also: #20081
This commit is contained in:
Robbie Trencheny 2019-03-24 17:15:07 -07:00 committed by GitHub
parent 0ae38aece8
commit dc64634e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,7 @@ class OnkyoDevice(MediaPlayerDevice):
except (ValueError, OSError, AttributeError, AssertionError):
if self._receiver.command_socket:
self._receiver.command_socket = None
_LOGGER.info("Resetting connection to %s", self._name)
_LOGGER.debug("Resetting connection to %s", self._name)
else:
_LOGGER.info("%s is disconnected. Attempting to reconnect",
self._name)