Skip to content

Commit

Permalink
Silence byes from unknown devices (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
rytilahti authored Oct 11, 2024
1 parent ef59398 commit 34ed92c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/upnp_availability/upnpstatustracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ async def handle_bye(self, headers):

udn = headers["_udn"]
if udn not in self.devices:
_LOGGER.error("Got bye from unknown device: %s", udn)
_LOGGER.debug("Got bye from unknown device, ignoring: %s", udn)
return

dev = self.devices[udn]
Expand Down

0 comments on commit 34ed92c

Please sign in to comment.