[Zodb-checkins] SVN: ZODB/trunk/src/ Moved a blob related logging message to debug level, for the case of everything working as intended.
Hanno Schlichting
plone at hannosch.info
Sat Feb 21 13:42:30 EST 2009
Log message for revision 96964:
Moved a blob related logging message to debug level, for the case of everything working as intended.
Changed:
U ZODB/trunk/src/CHANGES.txt
U ZODB/trunk/src/ZODB/blob.py
-=-
Modified: ZODB/trunk/src/CHANGES.txt
===================================================================
--- ZODB/trunk/src/CHANGES.txt 2009-02-21 18:15:39 UTC (rev 96963)
+++ ZODB/trunk/src/CHANGES.txt 2009-02-21 18:42:30 UTC (rev 96964)
@@ -22,6 +22,9 @@
XXX There are known issues with this implementation that need to be
sorted out before it is "released".
+- Moved a blob related logging message to debug level, for the case of
+ everything working as intended.
+
- Changed the url in the package metadata to point to PyPi. Also removed
references to download.zope.org.
Modified: ZODB/trunk/src/ZODB/blob.py
===================================================================
--- ZODB/trunk/src/ZODB/blob.py 2009-02-21 18:15:39 UTC (rev 96963)
+++ ZODB/trunk/src/ZODB/blob.py 2009-02-21 18:42:30 UTC (rev 96964)
@@ -518,7 +518,7 @@
layout = open(layout_marker, 'rb').read()
layout = layout.strip()
log('Blob directory `%s` has layout marker set. '
- 'Selected `%s` layout. ' % (path, layout))
+ 'Selected `%s` layout. ' % (path, layout), level=logging.DEBUG)
return layout
More information about the Zodb-checkins
mailing list