From 83a269bc9cee9fc298fdf846bb7637f3b5a35e5e Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Tue, 5 Dec 2023 19:32:27 -0800 Subject: [PATCH] What is going on with trace? --- ipa-core/src/helpers/gateway/send.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-core/src/helpers/gateway/send.rs b/ipa-core/src/helpers/gateway/send.rs index 29bc0d5fe..e41c1b53f 100644 --- a/ipa-core/src/helpers/gateway/send.rs +++ b/ipa-core/src/helpers/gateway/send.rs @@ -181,7 +181,7 @@ impl Stream for GatewaySendStream { fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { 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) }