From d07c4f129ee405bfc750cdabf65af785f6fd6341 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Mon, 21 Oct 2024 19:18:44 +0300 Subject: [PATCH] Fix: Negotiated protocol version should not be logged as info --- qh3/quic/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qh3/quic/connection.py b/qh3/quic/connection.py index 90a58cca..3f3dfdec 100644 --- a/qh3/quic/connection.py +++ b/qh3/quic/connection.py @@ -1167,7 +1167,7 @@ def _alpn_handler(self, alpn_protocol: str) -> None: ] break self._version_negotiated_compatible = True - self._logger.info( + self._logger.debug( "Negotiated protocol version %s", pretty_protocol_version(self._version) )