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 01f7bb6 commit 0cf0a70Copy full SHA for 0cf0a70
plugwise_usb/network/registry.py
@@ -152,8 +152,10 @@ async def retrieve_network_registration(
152
153
def network_address(self, mac: str) -> int | None:
154
"""Return the network registration address for given mac."""
155
+ _LOGGER.debug("Finding registration address of %", mac)
156
for address, registration in self._registry.items():
157
registered_mac, _ = registration
158
+ _LOGGER.debug("address: %s | mac: %s", address, registered_mac)
159
if mac == registered_mac:
160
return address
161
return None
0 commit comments