From 45d4586bc2a8b77a1efee7bb187c63f84f0cc2d8 Mon Sep 17 00:00:00 2001 From: David Bonnes Date: Fri, 4 Oct 2019 16:54:16 +0100 Subject: [PATCH] Improve evohome debug logging (#27178) * add debug logging for schedule updates * add debug logging for schedules * change back to debug from warn --- homeassistant/components/evohome/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/evohome/__init__.py b/homeassistant/components/evohome/__init__.py index 14bf1223953..e9254c373d9 100644 --- a/homeassistant/components/evohome/__init__.py +++ b/homeassistant/components/evohome/__init__.py @@ -454,6 +454,8 @@ class EvoChild(EvoDevice): self._evo_device.schedule(), refresh=False ) + _LOGGER.debug("Schedule['%s'] = %s", self.name, self._schedule) + async def async_update(self) -> None: """Get the latest state data.""" next_sp_from = self._setpoints.get("next_sp_from", "2000-01-01T00:00:00+00:00")