From 809c2980dfa50c5606fb807b37d37e729d95f2be Mon Sep 17 00:00:00 2001 From: Eugene Prystupa Date: Mon, 3 Aug 2020 11:55:04 -0400 Subject: [PATCH] =?UTF-8?q?Log=20the=20version=20reported=20by=20Bond=20hu?= =?UTF-8?q?b=20upon=20startup=20to=20facilitate=20troub=E2=80=A6=20(#38508?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homeassistant/components/bond/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/bond/utils.py b/homeassistant/components/bond/utils.py index b45ca9bd251..5a9fff692fa 100644 --- a/homeassistant/components/bond/utils.py +++ b/homeassistant/components/bond/utils.py @@ -78,6 +78,7 @@ class BondHub: async def setup(self): """Read hub version information.""" self._version = await self.bond.version() + _LOGGER.debug("Bond reported the following version info: %s", self._version) # Fetch all available devices using Bond API. device_ids = await self.bond.devices()