fix(runtime/websocket): remove eprintln (#8817)

This commit is contained in:
crowlKats 2020-12-18 11:27:53 +01:00 committed by GitHub
parent ffb5f7a4e1
commit 37fd0836d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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!({}))
}