opt: log message

This commit is contained in:
YiFang Xiao 2023-10-28 13:23:14 +08:00
parent 87ae7899ae
commit b9e19fdd35

View file

@ -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 );
} );