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 023bce3 commit 72e3203Copy full SHA for 72e3203
plugwise_usb/nodes/sense.py
@@ -51,15 +51,17 @@ async def load(self) -> bool:
51
if self._loaded:
52
return True
53
54
+ _LOGGER.debug("Loading Sense node %s", self._node_info.mac)
55
if not await super().load():
56
+ _LOGGER.debug("Load Sense base node %s failed")
57
return False
58
59
self._setup_protocol(SENSE_FIRMWARE_SUPPORT, SENSE_FEATURES)
60
if await self.initialize():
61
await self._loaded_callback(NodeEvent.LOADED, self.mac)
62
63
- _LOGGER.debug("Loading of Sense node %s failed", self._node_info.mac)
64
+ _LOGGER.debug("Load Sense node %s failed", self._node_info.mac)
65
66
67
@raise_not_loaded
0 commit comments