[Zope3-checkins] CVS: Zope3/src/zodb/storage - bdbfull.py:1.1.2.3 file.py:1.1.2.5

Barry Warsaw barry@wooz.org
Mon, 23 Dec 2002 18:49:13 -0500


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

Modified Files:
      Tag: NameGeddon-branch
	bdbfull.py file.py 
Log Message:
more fixes

move threadedasync.py from the top level into zodb/zeo since it was
causing problems otherwise, and it's only used by zeo now.


=== Zope3/src/zodb/storage/bdbfull.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/zodb/storage/bdbfull.py:1.1.2.2	Mon Dec 23 16:52:52 2002
+++ Zope3/src/zodb/storage/bdbfull.py	Mon Dec 23 18:48:42 2002
@@ -34,7 +34,7 @@
 
 # BerkeleyBase.BerkeleyBase class provides some common functionality for both
 # the Full and Minimal implementations.  It in turn inherits from
-# ZODB.BaseStorage.BaseStorage which itself provides some common storage
+# zodb.storage.base.BaseStorage which itself provides some common storage
 # functionality.
 from zodb.storage.base import BerkeleyBase, PackStop, _WorkThread
 from zodb.storage._helper import incr


=== Zope3/src/zodb/storage/file.py 1.1.2.4 => 1.1.2.5 ===
--- Zope3/src/zodb/storage/file.py:1.1.2.4	Mon Dec 23 17:37:08 2002
+++ Zope3/src/zodb/storage/file.py	Mon Dec 23 18:48:42 2002
@@ -157,7 +157,7 @@
 
 packed_version = 'FS21'
 
-logger = logging.getLogger("ZODB.FS.%s" % packed_version)
+logger = logging.getLogger("zodb.storage.file.%s" % packed_version)
 
 warn = logger.warn
 error = logger.error