[Zope-Checkins]
SVN: Zope/branches/2.9/lib/python/Products/PluginIndexes/
quieten more down.
Chris Withers
chris at simplistix.co.uk
Mon May 15 16:21:04 EDT 2006
Log message for revision 68138:
quieten more down.
Changed:
U Zope/branches/2.9/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
U Zope/branches/2.9/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py
U Zope/branches/2.9/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py
-=-
Modified: Zope/branches/2.9/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
===================================================================
--- Zope/branches/2.9/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py 2006-05-15 20:02:31 UTC (rev 68137)
+++ Zope/branches/2.9/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py 2006-05-15 20:21:03 UTC (rev 68138)
@@ -127,7 +127,7 @@
try:
del self._unindex[documentId]
except KeyError:
- LOG.error('Attempt to unindex nonexistent'
+ LOG.debug('Attempt to unindex nonexistent'
' document id %s' % documentId)
manage = manage_main = DTMLFile('dtml/manageKeywordIndex', globals())
Modified: Zope/branches/2.9/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py
===================================================================
--- Zope/branches/2.9/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py 2006-05-15 20:02:31 UTC (rev 68137)
+++ Zope/branches/2.9/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py 2006-05-15 20:21:03 UTC (rev 68138)
@@ -132,7 +132,7 @@
""" hook for (Z)Catalog """
if not self._unindex.has_key(docid):
- LOG.error('Attempt to unindex nonexistent document with id %s'
+ LOG.debug('Attempt to unindex nonexistent document with id %s'
% docid)
return
@@ -150,7 +150,7 @@
if not self._index[comp]:
del self._index[comp]
except KeyError:
- LOG.error('Attempt to unindex document with id %s failed'
+ LOG.debug('Attempt to unindex document with id %s failed'
% docid)
self._length.change(-1)
Modified: Zope/branches/2.9/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py
===================================================================
--- Zope/branches/2.9/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py 2006-05-15 20:02:31 UTC (rev 68137)
+++ Zope/branches/2.9/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py 2006-05-15 20:21:03 UTC (rev 68138)
@@ -80,7 +80,7 @@
try:
fs.unindex_object(docid)
except KeyError:
- LOG.error('Attempt to unindex document'
+ LOG.debug('Attempt to unindex document'
' with id %s failed' % docid)
return 1
More information about the Zope-Checkins
mailing list