diff --git a/app.py b/app.py index 2b11bcb..78ad8a9 100644 --- a/app.py +++ b/app.py @@ -96,8 +96,8 @@ async def websocket_endpoint(ws: WebSocket): await ws.send_json({"type": "pong"}) except WebSocketDisconnect: pass - except Exception as e: - logger.error("WS error: %s", e) + except Exception: + pass finally: ws_manager.disconnect(cid)