[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - connection.py:1.44

Jeremy Hylton jeremy@zope.com
Fri, 17 Jan 2003 14:00:00 -0500


Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv2921

Modified Files:
	connection.py 
Log Message:
Lower to log levels, one at Toby's request.
Closes SF bug #659068.


=== ZODB3/ZEO/zrpc/connection.py 1.43 => 1.44 ===
--- ZODB3/ZEO/zrpc/connection.py:1.43	Tue Jan 14 14:05:03 2003
+++ ZODB3/ZEO/zrpc/connection.py	Fri Jan 17 13:59:57 2003
@@ -245,7 +245,7 @@
             raise ZRPCError(msg)
         if __debug__:
             self.log("calling %s%s" % (name, short_repr(args)),
-                     level=zLOG.BLATHER)
+                     level=zLOG.DEBUG)
 
         meth = getattr(self.obj, name)
         try:
@@ -428,7 +428,7 @@
                     del self.replies[msgid]
                     if __debug__:
                         self.log("wait(%d): reply=%s" %
-                                 (msgid, short_repr(reply)), level=zLOG.DEBUG)
+                                 (msgid, short_repr(reply)), level=zLOG.TRACE)
                     return reply
                 if self.is_async():
                     self.replies_cond.wait(10.0)