Skip to content

Commit

Permalink
Stop logging websocket connection retry exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Sep 15, 2024
1 parent b9dfc75 commit bb298ed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ async def _backoff_connect(
aiohttp.ClientConnectionError,
):
ws_logger.info(
f"Websocket[{self._idx}] connection problem (sleep: {round(delay)}s)",
exc_info=True,
f"Websocket[{self._idx}] connection problem (sleep: {round(delay)}s)"
)
await asyncio.sleep(delay)
except RuntimeError:
Expand Down

0 comments on commit bb298ed

Please sign in to comment.