From 82cc605b5f7abdef070b5f85d30e62ae93f41900 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Sat, 22 Jun 2024 16:53:23 -0700 Subject: [PATCH] reflow macro --- src/main.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 4f1d4b7d..2128f1e0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -153,7 +153,12 @@ async fn run_server() -> Result<(), error::Serve> { request.uri().path() }; - tracing::info_span!("http_request", otel.name = path, %path, method = %request.method()) + tracing::info_span!( + "http_request", + otel.name = path, + %path, + method = %request.method(), + ) }, )) .layer(axum::middleware::from_fn(unrecognized_method))