Remove noisy debug message in PRS1 loader.

In theory it was useful to know why files were skipped, but in practice we
normally skip all but the most recent files, often thousands. If you had the
misfortune to have the debug pane open, you'd have to wait for an extra
minute or two for all those messages to scroll by.

If and when we can limit import scanning to files that are new or changed,
then the debug message will be useful again.
This commit is contained in:
sawinglogz 2021-10-28 14:01:33 -04:00
parent eb1f7b3935
commit a445781167

View File

@ -977,7 +977,8 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base)
// imported files without re-reading all of them.
if (context()->SessionExists(sid)) {
// Skip already imported session
qDebug() << path << "session already exists, skipping" << sid;
// TODO: Consider reinstating this debug statement if/when we scan only new/changed files.
//qDebug() << path << "session already exists, skipping" << sid;
continue;
}