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

quieten more down.

parent 0330ca7b
......@@ -127,7 +127,7 @@ class KeywordIndex(UnIndex):
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())
......
......@@ -132,7 +132,7 @@ class PathIndex(Persistent, SimpleItem):
""" 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 @@ class PathIndex(Persistent, SimpleItem):
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)
......
......@@ -80,7 +80,7 @@ class TopicIndex(Persistent, SimpleItem):
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
......
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