diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-08 11:24:25 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-08 11:24:25 +0100 |
commit | d7f3c13fa409ef2ee1ee78c18aae47e57383bec0 (patch) | |
tree | 427ceaca57f2038a4f46881b115624e72c7e3e14 /src/https.rs | |
parent | 098a6cf2cdb9b0370ab7358b005f731b65e9981c (diff) | |
download | tricot-d7f3c13fa409ef2ee1ee78c18aae47e57383bec0.tar.gz tricot-d7f3c13fa409ef2ee1ee78c18aae47e57383bec0.zip |
Logging output improvements
Diffstat (limited to 'src/https.rs')
-rw-r--r-- | src/https.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/https.rs b/src/https.rs index 2d97476..ae737d9 100644 --- a/src/https.rs +++ b/src/https.rs @@ -63,10 +63,10 @@ pub async fn serve_https( ) .await; if let Err(http_err) = http_result { - debug!("HTTP error: {}", http_err); + warn!("HTTP error: {}", http_err); } } - Err(e) => debug!("Error in TLS connection: {}", e), + Err(e) => warn!("Error in TLS connection: {}", e), } }); } |