From: Traun Leyden Date: Sat, 9 Feb 2008 16:45:02 +0000 (+0000) Subject: print out hostport of failed connection target X-Git-Tag: v1.0-rc1~360 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=516ae82e878d9910c1773b13a6e597c7da43302d;p=thirdparty%2Ffreeswitch.git print out hostport of failed connection target git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7569 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/scripts/socket/freepy/fseventlistener.py b/scripts/socket/freepy/fseventlistener.py index f71ad20e95..b7fe80d8f4 100644 --- a/scripts/socket/freepy/fseventlistener.py +++ b/scripts/socket/freepy/fseventlistener.py @@ -216,8 +216,8 @@ class FreeswitchEventListenerFactory(ClientFactory): if self.num_attempts < 10000: self.num_attempts += 1 - print "Connection refused, retrying attempt #%s in 5 seconds" % \ - (self.num_attempts) + print "Connection to %s:%s refused, retrying attempt #%s in " \ + "5 seconds" % (self.host, self.port, self.num_attempts) return reactor.callLater(5, self.connect) else: print "clientConnectionFailed! conn=%s, reason=%s" % (connector,