diff --git a/src/file/extractor/app.cpp b/src/file/extractor/app.cpp --- a/src/file/extractor/app.cpp +++ b/src/file/extractor/app.cpp @@ -97,6 +97,8 @@ QTimer::singleShot(delay, this, &App::processNextFile); } else { + qCInfo(BALOO) << "commit"; + m_tr->commit(); delete m_tr; m_tr = nullptr; @@ -148,6 +150,7 @@ // if (mimetype.startsWith(QStringLiteral("text/"))) { QFileInfo fileInfo(url); + qCWarning(BALOO) << mimetype << fileInfo.size(); if (fileInfo.size() >= 10 * 1024 * 1024) { tr->removePhaseOne(id); return; @@ -168,6 +171,7 @@ QList exList = m_extractorCollection.fetchExtractors(mimetype); Q_FOREACH (KFileMetaData::Extractor* ex, exList) { + qCWarning(BALOO) << "Trying" << ex->mimetypes(); ex->extract(&result); }