Skip to content

Commit

Permalink
Reduce log level of missing of pings
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus committed May 8, 2024
1 parent 594a92f commit c27eb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arcam/fmj/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def _process_data(self, reader: StreamReader):
read_response(reader), _HEARTBEAT_TIMEOUT.total_seconds()
)
except asyncio.TimeoutError as exception:
_LOGGER.warning("Missed all pings")
_LOGGER.debug("Missed all pings")
raise ConnectionFailed() from exception

if packet is None:
Expand Down

0 comments on commit c27eb1f

Please sign in to comment.