mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
eb1f7b3935
commit
a445781167
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user