Skip to content

Commit bb4f303

Browse files
pzhan9meta-codesync[bot]
authored andcommitted
Change log levels on some logs (#1837)
Summary: Pull Request resolved: #1837 Reviewed By: mariusae Differential Revision: D86829123 fbshipit-source-id: a1894bc2a881cbb215ebdbd589b3cde0f6b4bb61
1 parent b68c7fc commit bb4f303

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hyperactor/src/mailbox/headers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub fn log_message_latency_if_sampling(headers: &Attrs, actor_id: String) {
5151
}
5252

5353
if !headers.contains_key(SEND_TIMESTAMP) {
54-
tracing::warn!(
54+
tracing::debug!(
5555
actor_id = actor_id,
5656
"SEND_TIMESTAMP missing from message headers, cannot measure latency"
5757
);

hyperactor_telemetry/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ pub fn initialize_logging_with_log_prefix(
630630
tracing::debug!("logging already initialized for this process: {}", err);
631631
}
632632
let exec_id = env::execution_id();
633-
tracing::debug!(
633+
tracing::info!(
634634
target: "execution",
635635
execution_id = exec_id,
636636
environment = %Env::current(),

0 commit comments

Comments
 (0)