Commit 552c6d3e authored by Chris Withers's avatar Chris Withers

quieten more down.

parent 0330ca7b
...@@ -127,7 +127,7 @@ class KeywordIndex(UnIndex): ...@@ -127,7 +127,7 @@ class KeywordIndex(UnIndex):
try: try:
del self._unindex[documentId] del self._unindex[documentId]
except KeyError: except KeyError:
LOG.error('Attempt to unindex nonexistent' LOG.debug('Attempt to unindex nonexistent'
' document id %s' % documentId) ' document id %s' % documentId)
manage = manage_main = DTMLFile('dtml/manageKeywordIndex', globals()) manage = manage_main = DTMLFile('dtml/manageKeywordIndex', globals())
......
...@@ -132,7 +132,7 @@ class PathIndex(Persistent, SimpleItem): ...@@ -132,7 +132,7 @@ class PathIndex(Persistent, SimpleItem):
""" hook for (Z)Catalog """ """ hook for (Z)Catalog """
if not self._unindex.has_key(docid): 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) % docid)
return return
...@@ -150,7 +150,7 @@ class PathIndex(Persistent, SimpleItem): ...@@ -150,7 +150,7 @@ class PathIndex(Persistent, SimpleItem):
if not self._index[comp]: if not self._index[comp]:
del self._index[comp] del self._index[comp]
except KeyError: except KeyError:
LOG.error('Attempt to unindex document with id %s failed' LOG.debug('Attempt to unindex document with id %s failed'
% docid) % docid)
self._length.change(-1) self._length.change(-1)
......
...@@ -80,7 +80,7 @@ class TopicIndex(Persistent, SimpleItem): ...@@ -80,7 +80,7 @@ class TopicIndex(Persistent, SimpleItem):
try: try:
fs.unindex_object(docid) fs.unindex_object(docid)
except KeyError: except KeyError:
LOG.error('Attempt to unindex document' LOG.debug('Attempt to unindex document'
' with id %s failed' % docid) ' with id %s failed' % docid)
return 1 return 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment