Skip to content

Commit e6d27c8

Browse files
pzhan9facebook-github-bot
authored andcommitted
Change log levels on some logs (#1837)
Summary: Pull Request resolved: #1837 Reviewed By: mariusae Differential Revision: D86829123
1 parent 92e0118 commit e6d27c8

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)