[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/PluginIndexes/ quieten more down.

Chris Withers chris at simplistix.co.uk
Mon May 15 16:23:01 EDT 2006


Log message for revision 68139:
  quieten more down.

Changed:
  U   Zope/trunk/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
  U   Zope/trunk/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py
  U   Zope/trunk/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py

-=-
Modified: Zope/trunk/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
===================================================================
--- Zope/trunk/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py	2006-05-15 20:21:03 UTC (rev 68138)
+++ Zope/trunk/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py	2006-05-15 20:23:01 UTC (rev 68139)
@@ -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/trunk/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py
===================================================================
--- Zope/trunk/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py	2006-05-15 20:21:03 UTC (rev 68138)
+++ Zope/trunk/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py	2006-05-15 20:23:01 UTC (rev 68139)
@@ -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/trunk/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py
===================================================================
--- Zope/trunk/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py	2006-05-15 20:21:03 UTC (rev 68138)
+++ Zope/trunk/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py	2006-05-15 20:23:01 UTC (rev 68139)
@@ -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