Skip to content

Commit

Permalink
Change auto ping/pong log message to debug (#1525)
Browse files Browse the repository at this point in the history
  • Loading branch information
klinquist committed Feb 24, 2022
1 parent 2466c2b commit 45250ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autobahn/websocket/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ def onAutoPong(self, ping_sent, ping_seq, pong_received, pong_rtt, payload):
:param payload: The complete WebSocket ping/pong message payload
(ping_sent 8 bytes big-endian | ping_seq 4 bytes big endian | max. 113 optional random bytes).
"""
self.log.info(
self.log.debug(
"Auto ping/pong: received pending pong (size={size}) for auto-ping (sent={sent}, seq={seq}, received={received}) in RTT of {rtt} ms",
size=len(payload), sent=ping_sent, seq=ping_seq, received=pong_received, rtt=pong_rtt)

Expand Down

0 comments on commit 45250ad

Please sign in to comment.