diff options
-rw-r--r-- | common/fulltextindex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fulltextindex.cpp b/common/fulltextindex.cpp index cc7fecf..abe29f5 100644 --- a/common/fulltextindex.cpp +++ b/common/fulltextindex.cpp | |||
@@ -172,7 +172,7 @@ QVector<QByteArray> FulltextIndex::lookup(const QString &searchTerm) | |||
172 | 172 | ||
173 | const auto limit = searchTerm.size() <= 4 ? 1000 : 10000; | 173 | const auto limit = searchTerm.size() <= 4 ? 1000 : 10000; |
174 | Xapian::MSet mset = enquire.get_mset(0, limit); | 174 | Xapian::MSet mset = enquire.get_mset(0, limit); |
175 | SinkTrace() << "Result set: " << QString::fromStdString(mset.get_description()); | 175 | SinkTrace() << "Found " << mset.size() << " results, limited to " << limit; |
176 | for (Xapian::MSetIterator it = mset.begin(); it != mset.end(); it++) { | 176 | for (Xapian::MSetIterator it = mset.begin(); it != mset.end(); it++) { |
177 | auto doc = it.get_document(); | 177 | auto doc = it.get_document(); |
178 | const auto data = doc.get_value(0); | 178 | const auto data = doc.get_value(0); |