diff options
author | crowlKats <13135287+crowlKats@users.noreply.github.com> | 2020-12-18 11:27:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 11:27:53 +0100 |
commit | 37fd0836d01011640356d6ff83b29d39df83b03e (patch) | |
tree | b348ddb22bbecbee2be7c4078cf055d62b654dac /runtime/ops/websocket.rs | |
parent | ffb5f7a4e1d5d4ac488058ca3ec3c0805587fe44 (diff) |
fix(runtime/websocket): remove eprintln (#8817)
Diffstat (limited to 'runtime/ops/websocket.rs')
-rw-r--r-- | runtime/ops/websocket.rs | 1 |
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!({})) } |