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 b757359 commit 0c45f3bCopy full SHA for 0c45f3b
plugwise_usb/network/cache.py
@@ -44,6 +44,7 @@ async def clear_cache(self) -> None:
44
async def restore_cache(self) -> None:
45
"""Load the previously stored information."""
46
data: dict[str, str] = await self.read_cache()
47
+ _LOGGER.debug("Data read from nodetype-cache: %s", data)
48
self._nodetypes = {}
49
for mac, node_value in data.items():
50
node_type: NodeType | None = None
0 commit comments