Skip to content

Commit 8d9fcaa

Browse files
committed
Improve debug-message, downgrade to info
1 parent b21ace7 commit 8d9fcaa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

plugwise_usb/network/cache.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ async def restore_cache(self) -> None:
5858
node_type = None
5959

6060
if node_type in (None, NodeType.CIRCLE_PLUS):
61-
_LOGGER.warning(
62-
"Invalid NodeType in cache for mac %s: %s", mac, node_value
61+
_LOGGER.info(
62+
"Invalid NodeType %s found in cache for mac %s, ignoring...",
63+
node_value,
64+
mac,
6365
)
6466
continue
6567
self._nodetypes[mac] = node_type

0 commit comments

Comments
 (0)