We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb9340 commit d9f145bCopy full SHA for d9f145b
1 file changed
homeassistant/components/hr_energy_qube/coordinator.py
@@ -52,6 +52,8 @@ async def _async_update_data(self) -> QubeState:
52
try:
53
self.switches = await self.client.read_all_switches()
54
except ConnectionError, TimeoutError, OSError:
55
- _LOGGER.warning("Failed to read switch states from Qube heat pump")
+ _LOGGER.warning(
56
+ "Failed to read switch states from Qube heat pump", exc_info=True
57
+ )
58
59
return data
0 commit comments