Reduce log level for orig-proto-downgrade (#138)

Using a downgrade stack is not sufficiently important to log at the INFO
level. Log it at DEBUG.
This commit is contained in:
Oliver Gould 2018-11-16 13:19:06 -08:00 committed by GitHub
parent 2ab7ce2e67
commit 663eab43dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ pub mod orig_proto_downgrade {
type Error = M::Error;
fn make(&self, target: &Source) -> Result<Self::Value, Self::Error> {
info!("downgrading requests; source={:?}", target);
debug!("downgrading requests; source={:?}", target);
self
.inner
.make(&target)