diff --git a/axum/src/routing/mod.rs b/axum/src/routing/mod.rs index b7799d7b..52d20422 100644 --- a/axum/src/routing/mod.rs +++ b/axum/src/routing/mod.rs @@ -299,10 +299,7 @@ where } match self.path_router.call_with_state(req, state) { - Ok(future) => { - println!("path_router hit"); - future - } + Ok(future) => future, Err((mut req, state)) => { let super_fallback = req .extensions_mut()