Skip to content

Commit 456a066

Browse files
committed
reduce change loglevel for unnecessary axum/strangler logging
1 parent e60ad00 commit 456a066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/web/strangler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async fn forward_call_to_strangled(
9292
inner: Arc<InnerStranglerService>,
9393
req: axum::http::Request<axum::body::Body>,
9494
) -> Result<axum::response::Response, Infallible> {
95-
tracing::info!("handling a request");
95+
tracing::debug!("handling a request");
9696
let mut request_parts = RequestParts::new(req);
9797
let req: Result<axum::http::Request<axum::body::Body>, _> = request_parts.extract().await;
9898
let mut req = req.unwrap();

0 commit comments

Comments
 (0)