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())) } }