Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding subscribe and get op to network monitor #1372

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
deleted dead code
alexisbatyk committed Jan 13, 2025
commit 542e65c180b7c73670a81c50b5a4952a3ab5e509
4 changes: 0 additions & 4 deletions crates/core/src/tracing.rs
Original file line number Diff line number Diff line change
@@ -568,8 +568,6 @@ async fn send_to_metrics_server(
contract_location.as_f64(),
);

tracing::info!("is_going_here");

ws_stream.send(Message::Binary(msg.into())).await
}
EventKind::Put(PutEvent::PutSuccess {
@@ -650,7 +648,6 @@ async fn send_to_metrics_server(
*timestamp,
);

tracing::info!("Sending get_contract msg: {}", send_msg.tx);
ws_stream.send(Message::Binary(msg.into())).await
}
EventKind::Subscribed {
@@ -671,7 +668,6 @@ async fn send_to_metrics_server(
*timestamp,
);

tracing::info!("Sending subscribed_to msg: {}", send_msg.tx);
ws_stream.send(Message::Binary(msg.into())).await
}
_ => Ok(()),
Loading