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 89746da commit 448b143Copy full SHA for 448b143
plugwise_usb/nodes/node.py
@@ -407,7 +407,9 @@ async def _load_from_cache(self) -> bool:
407
_LOGGER.debug("Node %s failed to load cache file", self.mac)
408
return False
409
# Node Info
410
- if not await self._node_info_load_from_cache():
+ result: bool = await self._node_info_load_from_cache()
411
+ _LOGGER.debug("_load_from_cache | load node_info | result=%s", result)
412
+ if not result:
413
_LOGGER.debug("Node %s failed to load node_info from cache", self.mac)
414
415
return True
0 commit comments