Change log level to info for shutdown connection triggered by timer (#1418)

This commit is contained in:
Jonathan Zernik 2021-09-24 12:40:06 -07:00 committed by GitHub
parent 35e3f23dff
commit bae8d40984
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -400,7 +400,7 @@ class PingTimer:
self.timer.cancel()
def send_ping(self):
logger.debug("Sending ping triggered by timer.")
logger.info("Sending ping triggered by timer.")
self.send_fn()
@ -460,7 +460,7 @@ class PongTimer:
self.timer.cancel()
def shutdown(self):
logger.debug("Shutdown connection triggered by pong timer.")
logger.info("Shutdown connection triggered by pong timer.")
self.shutdown_fn()
def start_ping_timer(self):