Commit f0a3d8ab authored by Jeremy Hylton's avatar Jeremy Hylton

Make connect logging output more informative

parent 20b86296
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
"""Simple rpc mechanisms """Simple rpc mechanisms
""" """
__version__ = "$Revision: 1.15 $"[11:-2] __version__ = "$Revision: 1.16 $"[11:-2]
from cPickle import loads from cPickle import loads
import cPickle import cPickle
...@@ -133,7 +133,8 @@ class asyncRPC(SizedMessageAsyncConnection): ...@@ -133,7 +133,8 @@ class asyncRPC(SizedMessageAsyncConnection):
connection = self._connection connection = self._connection
debug=self._debug debug=self._debug
while 1: while 1:
if log_type: LOG(log_type, INFO, 'Trying to connect to server') if log_type: LOG(log_type, INFO,
'Trying to connect to server: %s' % `connection`)
try: try:
if type(connection) is type(''): if type(connection) is type(''):
s=socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) s=socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment