--- cdli/cdliSplitter.py 2007/10/19 16:30:58 1.7.2.3 +++ cdli/cdliSplitter.py 2007/10/24 20:36:06 1.7.2.4 @@ -44,7 +44,7 @@ class cdliSplitter: def process(self, lst): """gets a list of strings and returns a list of words""" - logging.debug("cdliSplitter") + logging.debug("cdliSplitter: %s"%self.indexName) result = [] pNum=None lineNum=None @@ -86,6 +86,7 @@ class cdliSplitter: if not (w==''): result.append(w) + logging.debug("split '%s' into %s"%(lst,repr(result))) return result