[Zodb-checkins] CVS: ZODB3/ZEO - StorageServer.py:1.55
Guido van Rossum
guido@python.org
Thu, 5 Sep 2002 13:51:11 -0400
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv15316
Modified Files:
StorageServer.py
Log Message:
Log disconnections at INFO level, for symmetry with connections.
=== ZODB3/ZEO/StorageServer.py 1.54 => 1.55 ===
--- ZODB3/ZEO/StorageServer.py:1.54 Thu Aug 29 18:11:10 2002
+++ ZODB3/ZEO/StorageServer.py Thu Sep 5 13:51:10 2002
@@ -124,11 +124,10 @@
# When this storage closes, we must ensure that it aborts
# any pending transaction. Not sure if this is the clearest way.
if self._transaction is not None:
- self._log("disconnected during transaction %s" % self._transaction,
- zLOG.BLATHER)
+ self._log("disconnected during transaction %s" % self._transaction)
self.tpc_abort(self._transaction.id)
else:
- self._log("disconnected", zLOG.BLATHER)
+ self._log("disconnected")
def __repr__(self):
tid = self._transaction and repr(self._transaction.id)