Skip to content

Commit

Permalink
What is going on with trace?
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Dec 6, 2023
1 parent eb4b499 commit 83a269b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipa-core/src/helpers/gateway/send.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl Stream for GatewaySendStream {

fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let channel_id = &self.inner.channel_id;
let span = tracing::info_span!("send", to = ?channel_id.role, gate = ?channel_id.gate);
let span = tracing::trace_span!("send_stream", to = ?channel_id.role, gate = ?channel_id.gate);
let _enter = span.enter();
Pin::get_mut(self).inner.ordering_tx.take_next(cx)
}
Expand Down

0 comments on commit 83a269b

Please sign in to comment.