Skip to content

Commit

Permalink
fix(runtime/websocket): remove eprintln (denoland#8817)
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Dec 18, 2020
1 parent ffb5f7a commit 37fd083
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion runtime/ops/websocket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!({}))
}

Expand Down

0 comments on commit 37fd083

Please sign in to comment.