Skip to content

Commit

Permalink
chore(https): reduce log level for debug logs
Browse files Browse the repository at this point in the history
Signed-off-by: Florentin Dubois <florentin.dubois@clever-cloud.com>
  • Loading branch information
FlorentinDUBOIS committed Jul 11, 2023
1 parent 11978c6 commit 362cd82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/https.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ impl HttpsSession {
let sni = handshake.session.server_name();
let alpn = handshake.session.alpn_protocol();
let alpn = alpn.and_then(|alpn| from_utf8(alpn).ok());
info!(
debug!(
"Successful TLS Handshake with, received: {:?} {:?}",
sni, alpn
);
Expand Down Expand Up @@ -416,7 +416,7 @@ impl ProxySession for HttpsSession {
return;
}

info!("Closing HTTPS session");
debug!("Closing HTTPS session");
self.metrics.service_stop();

// Restore gauges
Expand Down

0 comments on commit 362cd82

Please sign in to comment.