From 31aed243d9fbed33dec7954336face09b8b31baa Mon Sep 17 00:00:00 2001 From: Andrew Silver Date: Wed, 12 Apr 2023 07:38:21 +1000 Subject: [PATCH] Remove "NotFound hit" debug message (#1927) --- axum/src/routing/not_found.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/axum/src/routing/not_found.rs b/axum/src/routing/not_found.rs index ffd185bf..dc3fec46 100644 --- a/axum/src/routing/not_found.rs +++ b/axum/src/routing/not_found.rs @@ -29,7 +29,6 @@ where } fn call(&mut self, _req: Request) -> Self::Future { - println!("NotFound hit"); ready(Ok(StatusCode::NOT_FOUND.into_response())) } }