diff --git a/src/common/kiwix/reader.cpp b/src/common/kiwix/reader.cpp index a878d9d8..f825ba8c 100644 --- a/src/common/kiwix/reader.cpp +++ b/src/common/kiwix/reader.cpp @@ -292,15 +292,11 @@ namespace kiwix { this->suggestions.clear(); if (prefix.size()) { - cout << prefix << endl; - for (zim::File::const_iterator it = zimFileHandler->findByTitle('A', prefix); it != zimFileHandler->end() && it->getTitle().compare(0, prefix.size(), prefix) == 0 && this->suggestions.size() < suggestionsCount ; ++it) { this->suggestions.push_back(it->getTitle()); - - cout << " " << it->getTitle() << endl; } } else { retVal = false;