Skip to content

Commit a0091e6

Browse files
committed
fix debug note
1 parent d2aa36b commit a0091e6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

plugwise_usb/nodes/node.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,9 @@ async def get_state(self, features: tuple[NodeFeature]) -> dict[NodeFeature, Any
634634
states[NodeFeature.PING] = await self.ping_update()
635635
case _:
636636
_LOGGER.debug(
637-
f"Update of feature '{feature.name}' is "
638-
+ f"does not return any data {self.mac}"
637+
"Update of feature '%s' does not return any data for %s",
638+
feature.name,
639+
self.mac,
639640
)
640641

641642
return states

0 commit comments

Comments
 (0)