From 79862ec2e84c32122c820958ceec06d8b7701ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Er=C3=A8be=20-=20Romain=20Gerard?= Date: Mon, 22 Jan 2024 21:59:51 +0100 Subject: [PATCH] fix(http2): typo in trace logging (#3536) --- src/client/conn/http2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/conn/http2.rs b/src/client/conn/http2.rs index becb518b74..711cf0f9fe 100644 --- a/src/client/conn/http2.rs +++ b/src/client/conn/http2.rs @@ -426,7 +426,7 @@ where let opts = self.clone(); async move { - trace!("client handshake HTTP/1"); + trace!("client handshake HTTP/2"); let (tx, rx) = dispatch::channel(); let h2 = proto::h2::client::handshake(io, rx, &opts.h2_builder, opts.exec, opts.timer)