From 8e4f69a8bdbd82fa17489f493e6318ced12de7fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 24 Jan 2016 18:29:45 +0200 Subject: [PATCH] Bump connect error logging level to warning --- stomp/transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stomp/transport.py b/stomp/transport.py index 5000aea1..213e93bf 100644 --- a/stomp/transport.py +++ b/stomp/transport.py @@ -692,7 +692,7 @@ def attempt_connection(self): except socket.error: self.socket = None connect_count += 1 - log.info("Could not connect to host %s, port %s", host_and_port[0], host_and_port[1], exc_info=1) + log.warning("Could not connect to host %s, port %s", host_and_port[0], host_and_port[1], exc_info=1) if self.socket is None: sleep_duration = (min(self.__reconnect_sleep_max,