summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/ops/websocket.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/ops/websocket.rs b/runtime/ops/websocket.rs
index d805f307b..a5681bc52 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!({}))
}