From 8f72445b93ec88a414fda4cf05f83794cc86b31c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Mon, 17 Aug 2020 21:50:35 +0200 Subject: [PATCH] aquatic_http: fix debug log message for when TLS is established --- aquatic_http/src/lib/network/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquatic_http/src/lib/network/connection.rs b/aquatic_http/src/lib/network/connection.rs index 60c9811..4b30853 100644 --- a/aquatic_http/src/lib/network/connection.rs +++ b/aquatic_http/src/lib/network/connection.rs @@ -185,7 +185,7 @@ impl <'a>TlsHandshakeMachine { Stream::TlsStream(stream) ); - ::log::debug!("established tcp connection"); + ::log::debug!("established tls connection"); Ok(established) },