refactor: dont pretty print headers on request

This commit is contained in:
dusk 2023-05-05 13:33:34 +03:00
parent cc31eab4ff
commit e129bf6651
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA

View File

@ -99,7 +99,7 @@ pub(super) async fn handler(state: AppState) -> Result<(Router, Router), AppErro
.make_span_with(make_span_trace)
.on_request(|req: &Request<Body>, _span: &Span| {
tracing::debug!(
"started processing request with headers: {:#?}",
"started processing request with headers: {:?}",
req.headers()
)
});