From 6e4356cee7ff884d3c96b30179475ae68786c76b Mon Sep 17 00:00:00 2001 From: Peng Zhang Date: Wed, 12 Nov 2025 19:46:59 -0800 Subject: [PATCH] Change log levels on some logs (#1837) Summary: Pull Request resolved: https://github.com/meta-pytorch/monarch/pull/1837 Reviewed By: mariusae Differential Revision: D86829123 --- hyperactor/src/mailbox/headers.rs | 2 +- hyperactor_telemetry/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperactor/src/mailbox/headers.rs b/hyperactor/src/mailbox/headers.rs index f7f927f20..c1848c198 100644 --- a/hyperactor/src/mailbox/headers.rs +++ b/hyperactor/src/mailbox/headers.rs @@ -51,7 +51,7 @@ pub fn log_message_latency_if_sampling(headers: &Attrs, actor_id: String) { } if !headers.contains_key(SEND_TIMESTAMP) { - tracing::warn!( + tracing::debug!( actor_id = actor_id, "SEND_TIMESTAMP missing from message headers, cannot measure latency" ); diff --git a/hyperactor_telemetry/src/lib.rs b/hyperactor_telemetry/src/lib.rs index 077fcae64..a3ef6c785 100644 --- a/hyperactor_telemetry/src/lib.rs +++ b/hyperactor_telemetry/src/lib.rs @@ -630,7 +630,7 @@ pub fn initialize_logging_with_log_prefix( tracing::debug!("logging already initialized for this process: {}", err); } let exec_id = env::execution_id(); - tracing::debug!( + tracing::info!( target: "execution", execution_id = exec_id, environment = %Env::current(),