From 37fd0836d01011640356d6ff83b29d39df83b03e Mon Sep 17 00:00:00 2001 From: crowlKats <13135287+crowlKats@users.noreply.github.com> Date: Fri, 18 Dec 2020 11:27:53 +0100 Subject: [PATCH] fix(runtime/websocket): remove eprintln (#8817) --- runtime/ops/websocket.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/ops/websocket.rs b/runtime/ops/websocket.rs index d805f307be..a5681bc527 100644 --- a/runtime/ops/websocket.rs +++ b/runtime/ops/websocket.rs @@ -240,7 +240,6 @@ pub async fn op_ws_send( .ok_or_else(bad_resource_id)?; let mut tx = RcRef::map(&resource, |r| &r.tx).borrow_mut().await; tx.send(msg).await?; - eprintln!("sent!"); Ok(json!({})) }