Stop logging websocket connection retry exceptions

This commit is contained in:
DevilXD
2024-09-15 21:28:51 +02:00
parent b9dfc75398
commit bb298ed00c

View File

@@ -130,8 +130,7 @@ class Websocket:
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: