Repository: qpid-proton Updated Branches: refs/heads/master b9e60cd6c -> 12ebe05a4
PROTON-1172: bump down the severity of reactor connection events Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/12ebe05a Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/12ebe05a Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/12ebe05a Branch: refs/heads/master Commit: 12ebe05a4c1392fd77f4cd48ef70100f10a09e5c Parents: b9e60cd Author: Ken Giusti <[email protected]> Authored: Tue May 10 12:50:51 2016 -0400 Committer: Ken Giusti <[email protected]> Committed: Tue May 10 12:50:51 2016 -0400 ---------------------------------------------------------------------- proton-c/bindings/python/proton/reactor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/12ebe05a/proton-c/bindings/python/proton/reactor.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/reactor.py b/proton-c/bindings/python/proton/reactor.py index df1e039..1631c35 100644 --- a/proton-c/bindings/python/proton/reactor.py +++ b/proton-c/bindings/python/proton/reactor.py @@ -538,7 +538,7 @@ class Connector(Handler): assert(reactor is not None) url = self.address.next() reactor.set_connection_host(connection, url.host, str(url.port)) - logging.info("connecting to %s..." % url) + logging.debug("connecting to %s..." % url) transport = Transport() if self.sasl_enabled: @@ -567,7 +567,7 @@ class Connector(Handler): self._connect(event.connection, event.reactor) def on_connection_remote_open(self, event): - logging.info("connected to %s" % event.connection.hostname) + logging.debug("connected to %s" % event.connection.hostname) if self.reconnect: self.reconnect.reset() self.transport = None @@ -587,7 +587,7 @@ class Connector(Handler): logging.info("Disconnected will try to reconnect after %s seconds" % delay) event.reactor.schedule(delay, self) else: - logging.info("Disconnected") + logging.debug("Disconnected") self.connection = None def on_timer_task(self, event): --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
