Skip to content

Commit

Permalink
chore: remove info
Browse files Browse the repository at this point in the history
  • Loading branch information
S0c5 committed Aug 17, 2024
1 parent 82dc159 commit 92398ce
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sube/src/ws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,13 @@ impl Backend {
log::trace!("Got WS message {:?}", msg);

if let Message::Text(msg) = msg {
log::info!("Got WS message {:?}", msg);
let res: rpc::Response =
serde_json::from_str(&msg).unwrap_or_else(|_| {
result_to_response(
Err(standard_error(StandardError::ParseError, None)),
().into(),
)
});
// log::info!("res {:?}", res);
if res.id.is_u64() {
let id = res.id.as_u64().unwrap() as Id;
log::trace!("Answering request {}", id);
Expand Down

0 comments on commit 92398ce

Please sign in to comment.