[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - connection.py:1.25
Jeremy Hylton
jeremy@zope.com
Mon, 16 Sep 2002 23:15:27 -0400
Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv814
Modified Files:
connection.py
Log Message:
Move "send msg" and "recv msg" log calls to debug level.
=== ZODB3/ZEO/zrpc/connection.py 1.24 => 1.25 ===
--- ZODB3/ZEO/zrpc/connection.py:1.24 Mon Sep 16 18:06:41 2002
+++ ZODB3/ZEO/zrpc/connection.py Mon Sep 16 23:15:26 2002
@@ -197,7 +197,7 @@
if __debug__:
log("recv msg: %s, %s, %s, %s" % (msgid, flags, name,
short_repr(args)),
- level=zLOG.DEBUG)
+ level=zLOG.TRACE)
if name == REPLY:
self.handle_reply(msgid, flags, args)
else:
@@ -299,7 +299,8 @@
finally:
self.__msgid_lock.release()
if __debug__:
- log("send msg: %d, %d, %s, ..." % (msgid, flags, method))
+ log("send msg: %d, %d, %s, ..." % (msgid, flags, method),
+ zLOG.TRACE)
buf = self.marshal.encode(msgid, flags, method, args)
self.message_output(buf)
return msgid