Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
less verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegn committed Dec 16, 2018
1 parent 3f2e3bb commit 2311ad3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/http_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ pub fn serve_http(
remote_addr: SocketAddr,
) -> BoxedResponseFuture {
let timer = time::Instant::now();
info!("serving http: {}", req.uri());
debug!("serving http: {}", req.uri());
let (parts, body) = req.into_parts();
warn!("headers: {:?}", parts.headers);
let host = if parts.version == hyper::Version::HTTP_2 {
match parts.uri.host() {
Some(h) => h,
Expand Down

0 comments on commit 2311ad3

Please sign in to comment.