Removed leftover "path_router hit" debug message (#1925)

This commit is contained in:
Andrew Silver
2023-04-11 17:02:19 +00:00
committed by GitHub
parent 51edc9c895
commit 21d496ddb1
+1 -4
View File
@@ -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()