From e485eb23b9a9ca5a9cd8f257f095b8e9d963d5ee Mon Sep 17 00:00:00 2001 From: Richard Strnad Date: Sun, 20 Oct 2024 09:54:05 +0200 Subject: [PATCH] fix: remove debug print --- src/websocket.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/websocket.rs b/src/websocket.rs index cd6212d3..c217f4b0 100644 --- a/src/websocket.rs +++ b/src/websocket.rs @@ -218,7 +218,6 @@ impl EnhancedWebsocket { request_id += 1; let method = format!("{operation}Subscribe"); let body = json!({"jsonrpc":"2.0","id":request_id,"method":method,"params":params}); - println!("subscription: {:#}", body); ws.send(Message::Text(body.to_string())).await?; requests_subscribe.insert(request_id, (operation, response_sender)); },