[Zodb-checkins] CVS: StandaloneZODB/ZEO - StorageServer.py:1.34.2.8

Jeremy Hylton jeremy@zope.com
Wed, 3 Apr 2002 18:49:56 -0500


Update of /cvs-repository/StandaloneZODB/ZEO
In directory cvs.zope.org:/tmp/cvs-serv13270

Modified Files:
      Tag: zeo-1_0-debug-branch
	StorageServer.py 
Log Message:
Log the user and description for the transaction.


=== StandaloneZODB/ZEO/StorageServer.py 1.34.2.7 => 1.34.2.8 ===
     def tpc_begin(self, id, user, description, ext):
         if __debug__:
-            log.blather("tpc_begin(%s) %s" % (U64(id), self.logaddr))
+            log.blather("tpc_begin(%s, %s, %s) %s" % (U64(id), `user`,
+                                                      `description`,
+                                                      self.logaddr))
         t = self._transaction
         if t is not None:
             if id == t.id: