diff --git a/SleepLib/loader_plugins/prs1_loader.cpp b/SleepLib/loader_plugins/prs1_loader.cpp index 8b57d8ef..f7ed14c1 100644 --- a/SleepLib/loader_plugins/prs1_loader.cpp +++ b/SleepLib/loader_plugins/prs1_loader.cpp @@ -157,6 +157,7 @@ int PRS1Loader::Open(QString & path,Profile *profile) delete m; } } + qDebug() << "Open() Done"; return PRS1List.size(); } @@ -387,6 +388,7 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile) m->properties["DataVersion"]=s; m->Save(); // Save any new sessions to disk in our format if (qprogress) qprogress->setValue(100); + qDebug() << "OpenMachine Done"; return true; } diff --git a/SleepLib/profiles.cpp b/SleepLib/profiles.cpp index a8ba6d14..29619e36 100644 --- a/SleepLib/profiles.cpp +++ b/SleepLib/profiles.cpp @@ -213,6 +213,7 @@ int Profile::Import(QString path) for (list::iterator i=loaders.begin(); i!=loaders.end(); i++) { if (c+=(*i)->Open(path,this)) break; } + qDebug() << "Import Done"; return c; }