From 8d90295dea754b1fa57dc91111c62aff9636f593 Mon Sep 17 00:00:00 2001 From: Peng Zhang Date: Mon, 27 Oct 2025 12:18:43 -0700 Subject: [PATCH] Downgrade message log level to TRACE Summary: We found this log not helpful when debugging S576170. But it causes log spew and makes it hard to find other useful logs. Downgrade to TRACE instead of deleting it just in case we might need it in the future debugging (at that time we can manually bump its level). Reviewed By: shayne-fletcher Differential Revision: D85533659 --- hyperactor/src/mailbox.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperactor/src/mailbox.rs b/hyperactor/src/mailbox.rs index 2b31b8124..b0fd66e8d 100644 --- a/hyperactor/src/mailbox.rs +++ b/hyperactor/src/mailbox.rs @@ -1160,7 +1160,7 @@ impl MailboxSender for MailboxClient { envelope: MessageEnvelope, return_handle: PortHandle>, ) { - tracing::event!(target:"messages", tracing::Level::DEBUG, "size"=envelope.data.len(), "sender"= %envelope.sender, "dest" = %envelope.dest.0, "port"= envelope.dest.1, "message_type" = envelope.data.typename().unwrap_or("unknown"), "send_message"); + tracing::event!(target:"messages", tracing::Level::TRACE, "size"=envelope.data.len(), "sender"= %envelope.sender, "dest" = %envelope.dest.0, "port"= envelope.dest.1, "message_type" = envelope.data.typename().unwrap_or("unknown"), "send_message"); if let Err(mpsc::error::SendError((envelope, return_handle))) = self.buffer.send((envelope, return_handle)) {