Skip to content

Commit 448b143

Browse files
committed
More debugging
1 parent 89746da commit 448b143

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugwise_usb/nodes/node.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,9 @@ async def _load_from_cache(self) -> bool:
407407
_LOGGER.debug("Node %s failed to load cache file", self.mac)
408408
return False
409409
# Node Info
410-
if not await self._node_info_load_from_cache():
410+
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:
411413
_LOGGER.debug("Node %s failed to load node_info from cache", self.mac)
412414
return False
413415
return True

0 commit comments

Comments
 (0)