Skip to content

Commit

Permalink
Merge pull request #87 from scop/connect-warning
Browse files Browse the repository at this point in the history
Bump connect error logging level to warning
  • Loading branch information
jasonrbriggs committed Jan 25, 2016
2 parents eab730d + 8e4f69a commit abe6119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stomp/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit abe6119

Please sign in to comment.