[Zodb-checkins] CVS: Zope3/src/zodb - connection.py:1.13

Jeremy Hylton jeremy@zope.com
Thu, 6 Mar 2003 13:13:23 -0500


Update of /cvs-repository/Zope3/src/zodb
In directory cvs.zope.org:/tmp/cvs-serv13426

Modified Files:
	connection.py 
Log Message:
log at debug level instead of info.


=== Zope3/src/zodb/connection.py 1.12 => 1.13 ===
--- Zope3/src/zodb/connection.py:1.12	Wed Mar  5 17:42:53 2003
+++ Zope3/src/zodb/connection.py	Thu Mar  6 13:13:04 2003
@@ -248,7 +248,7 @@
         return self._version
 
     def reset(self, version=""):
-        self._log.info("connection reset")
+        self._log.debug("connection reset")
         if version != self._version:
             # XXX I think it's necessary to clear the cache here, because
             # the objects in the cache don't know that they were in a
@@ -285,7 +285,7 @@
             msg = "connection closed while transaction active"
             self._log.warn(msg)
             raise TransactionError(msg)
-        self._log.info("connection closed")    
+        self._log.debug("connection closed")    
         self._open = False
         self._cache.incrgc()
         # Return the connection to the pool.