mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-28 15:30:16 +01:00
Removed leftover "path_router hit" debug message (#1925)
This commit is contained in:
parent
51edc9c895
commit
21d496ddb1
1 changed files with 1 additions and 4 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue