--- XMLRpcTools/XmlRpcProxy.py 2008/03/06 15:08:32 1.5 +++ XMLRpcTools/XmlRpcProxy.py 2011/03/03 17:51:06 1.6 @@ -102,10 +102,12 @@ class XmlRpcProxyMethod(SimpleItem): while True: try: # call the method self.id on the server with the args + logging.debug("XmlRpcProxyMethod: server=%s method=%s args=%s"%(server, self.id, repr(args))) return getattr(server, self.id)(*args) except: # should we catch only specific exceptions? + logging.error("XmlRpcProxyMethod: error!") if i >= self.num_retries: # pass on exception raise