From 7dda85dcb70b18bd4f0f6cbdb81b3a8ea5b195e1 Mon Sep 17 00:00:00 2001 From: Sam Westerman Date: Fri, 11 Sep 2026 12:12:03 -0700 Subject: [PATCH] feat(relay): log process id at startup Add the process id as a structured field on the "Starting buzz-relay" startup log so operators can correlate the relay process with signals, logs, and metrics. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Sam Westerman --- crates/buzz-relay/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/buzz-relay/src/main.rs b/crates/buzz-relay/src/main.rs index 206f0329c0e..443d1f5d847 100644 --- a/crates/buzz-relay/src/main.rs +++ b/crates/buzz-relay/src/main.rs @@ -191,7 +191,7 @@ async fn run_relay_main(boot: BootTracker) -> anyhow::Result<()> { } } - info!("Starting buzz-relay"); + info!(pid = std::process::id(), "Starting buzz-relay"); let (next_boot, config) = boot .run_required(StartupPhase::ConfigLoad, Config::from_env, |_error| {