Unverified Commit 04a695ac authored by Niklas Adolfsson's avatar Niklas Adolfsson Committed by GitHub
Browse files

fix(http server): add log for the http request (#854)

parent a229459e
Pipeline #208498 passed with stages
in 4 minutes and 30 seconds
......@@ -597,6 +597,7 @@ impl<L: Logger> hyper::service::Service<hyper::Request<hyper::Body>> for TowerSe
}
fn call(&mut self, request: hyper::Request<hyper::Body>) -> Self::Future {
tracing::trace!("{:?}", request);
let data = self.inner.clone();
Box::pin(data.handle_request(request).map(Ok))
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment