Skip to content

Commit

Permalink
Lower discovery protocol errors to debug (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Dec 11, 2021
1 parent ec790ae commit c505b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flux_led/aioscanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def datagram_received(self, data: bytes, addr: Tuple[str, int]) -> None:

def error_received(self, ex: Optional[Exception]) -> None:
"""Handle error."""
_LOGGER.error("LEDENETDiscovery error: %s", ex)
_LOGGER.debug("LEDENETDiscovery error: %s", ex)

def connection_lost(self, ex: Optional[Exception]) -> None:
"""The connection is lost."""
Expand Down

0 comments on commit c505b78

Please sign in to comment.