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

This commit is contained in:
Andrew Silver 2023-04-12 03:02:19 +10:00 committed by GitHub
parent 51edc9c895
commit 21d496ddb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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