From bae8d409840eb3f2d942fd2b7052479b75fc96e4 Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Fri, 24 Sep 2021 12:40:06 -0700 Subject: [PATCH] Change log level to info for shutdown connection triggered by timer (#1418) --- squeaknode/network/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/squeaknode/network/connection.py b/squeaknode/network/connection.py index 2e0c6560..ad64d74a 100644 --- a/squeaknode/network/connection.py +++ b/squeaknode/network/connection.py @@ -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):