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

Guido van Rossum guido@python.org
Fri, 24 Jan 2003 09:32:47 -0500


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

Modified Files:
	connection.py 
Log Message:
Lower another log level ("recv reply: %s, %s, %s") at Florent
Guillaume's request.


=== ZODB3/ZEO/zrpc/connection.py 1.44 => 1.45 ===
--- ZODB3/ZEO/zrpc/connection.py:1.44	Fri Jan 17 13:59:57 2003
+++ ZODB3/ZEO/zrpc/connection.py	Fri Jan 24 09:32:44 2003
@@ -231,7 +231,7 @@
     def handle_reply(self, msgid, flags, args):
         if __debug__:
             self.log("recv reply: %s, %s, %s"
-                     % (msgid, flags, short_repr(args)), level=zLOG.DEBUG)
+                     % (msgid, flags, short_repr(args)), level=zLOG.TRACE)
         self.replies_cond.acquire()
         try:
             self.replies[msgid] = flags, args