diff --git a/src/app/main.rs b/src/app/main.rs index bb5edf99f..19a423553 100644 --- a/src/app/main.rs +++ b/src/app/main.rs @@ -542,13 +542,13 @@ where .get(super::CANONICAL_DST_HEADER) .and_then(|dst| dst.to_str().ok()) .and_then(|d| Addr::from_str(d).ok()); - info!("inbound canonical={:?}", canonical); + debug!("inbound canonical={:?}", canonical); let dst = canonical .or_else(|| super::http_request_authority_addr(req).ok()) .or_else(|| super::http_request_host_addr(req).ok()) .or_else(|| super::http_request_orig_dst_addr(req).ok()); - info!("inbound dst={:?}", dst); + debug!("inbound dst={:?}", dst); dst.map(DstAddr::inbound) })) .make(&router::Config::new("in dst", capacity, max_idle_age)) diff --git a/src/app/outbound.rs b/src/app/outbound.rs index 027730990..e07983945 100644 --- a/src/app/outbound.rs +++ b/src/app/outbound.rs @@ -147,9 +147,11 @@ pub mod discovery { match self { Resolution::Name(ref name, ref mut res) => match try_ready!(res.poll()) { resolve::Update::Remove(addr) => { + debug!("removing {}", addr); Ok(Async::Ready(resolve::Update::Remove(addr))) } resolve::Update::Add(addr, metadata) => { + debug!("adding {}", addr); // If the endpoint does not have TLS, note the reason. // Otherwise, indicate that we don't (yet) have a TLS // config. This value may be changed by a stack layer that