Skip to content

Commit

Permalink
Merge pull request #42 from glensc/patch-1
Browse files Browse the repository at this point in the history
Fix: Negotiated protocol version should not be logged as info
  • Loading branch information
Ousret authored Oct 22, 2024
2 parents f864880 + d07c4f1 commit d71b435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qh3/quic/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)

Expand Down

0 comments on commit d71b435

Please sign in to comment.