diff --git a/crates/relay/src/main.rs b/crates/relay/src/main.rs index a500bbd4..75c978d2 100644 --- a/crates/relay/src/main.rs +++ b/crates/relay/src/main.rs @@ -231,7 +231,9 @@ async fn main() -> Result<()> { } // Network is moved into the listener task, so we just shut down the relay. - relay_server.shutdown().await.ok(); + if let Err(e) = relay_server.shutdown().await { + tracing::warn!(%e, "relay server shutdown failed"); + } info!("shut down complete"); Ok(()) }