From 54b31431f6aa809349060f2214c7dd98b94b0213 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 21 Jul 2011 02:48:21 +1000 Subject: [PATCH] PRS1 Error message cleanup --- SleepLib/loader_plugins/prs1_loader.cpp | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/SleepLib/loader_plugins/prs1_loader.cpp b/SleepLib/loader_plugins/prs1_loader.cpp index 93a04c1b..81551b7a 100644 --- a/SleepLib/loader_plugins/prs1_loader.cpp +++ b/SleepLib/loader_plugins/prs1_loader.cpp @@ -284,10 +284,10 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile) Session *sess=new Session(m,session); if (!OpenSummary(sess,s->second[0])) { - qWarning() << "PRS1Loader: Could'nt open summary file " << s->second[0]; + //qWarning() << "PRS1Loader: Dodgy summary file " << s->second[0]; - delete sess; - continue; + // delete sess; + // continue; } //sess->SetSessionID(sess->start().GetTicks()); if (!s->second[1].isEmpty()) { @@ -302,6 +302,7 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile) } const double ignore_thresh=300.0/3600.0;// Ignore useless sessions under 5 minute if (sess->hours()<=ignore_thresh) { + qDebug() << "Igoring short session" << session << "which is only" << (sess->hours()*60.0) << "minute(s) long"; delete sess; continue; } @@ -437,7 +438,7 @@ bool PRS1Loader::OpenSummary(Session *session,QString filename) return false; if (size<=19) { - qDebug() << "Ignoring short session file " << filename; + // qDebug() << "Ignoring short session file " << filename; return false; } @@ -1027,12 +1028,6 @@ bool PRS1Loader::OpenWaveforms(Session *session,QString filename) } duration+=diff; } - /*if (diff!=0) { - if (cnt==1) { - start+=diff*1000; - } else { - } - } */ //qDebug() << "Wave: " << cnt << seconds << diff; }