diff --git a/src/fulltextsearch.cc b/src/fulltextsearch.cc index a2ae7051..f59d55d3 100644 --- a/src/fulltextsearch.cc +++ b/src/fulltextsearch.cc @@ -41,7 +41,7 @@ void Indexing::run() QFuture< void > const f = QtConcurrent::run( [ this, &sem, &dictionary ]() { QSemaphoreReleaser const _( sem ); const QString & dictionaryName = QString::fromUtf8( dictionary->getName().c_str() ); - qDebug() << "[FULLTEXT] make fts for the dictionary:" << dictionaryName; + qDebug() << "[FULLTEXT] checking fts for the dictionary:" << dictionaryName; emit sendNowIndexingName( dictionaryName ); dictionary->makeFTSIndex( isCancelled, false ); } );