Remove "NotFound hit" debug message (#1927)

This commit is contained in:
Andrew Silver 2023-04-12 07:38:21 +10:00 committed by GitHub
parent b92b91e75e
commit 31aed243d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,6 @@ where
}
fn call(&mut self, _req: Request<B>) -> Self::Future {
println!("NotFound hit");
ready(Ok(StatusCode::NOT_FOUND.into_response()))
}
}