Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hyperactor/src/mailbox/headers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
Expand Down
2 changes: 1 addition & 1 deletion hyperactor_telemetry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
Loading