Clean up unnecessary debug output

This commit is contained in:
Phil Olynyk 2022-01-05 15:35:35 -05:00
parent f7b7590207
commit 8c997a68e8
2 changed files with 7 additions and 5 deletions

View File

@ -15,7 +15,7 @@
#include <QObject> #include <QObject>
#include <QThread> #include <QThread>
#define DEBUG_EFFICIENCY 1 // #define DEBUG_EFFICIENCY 1 // Developers can define this for qmake if they want it
#include <QLocale> #include <QLocale>
#include "Graphs/glcommon.h" #include "Graphs/glcommon.h"

View File

@ -67,8 +67,10 @@ ResmedLoader::ResmedLoader() {
#endif #endif
m_type = MT_CPAP; m_type = MT_CPAP;
#ifdef DEBUG_EFFICIENCY
timeInTimeDelta = timeInLoadBRP = timeInLoadPLD = timeInLoadEVE = 0; timeInTimeDelta = timeInLoadBRP = timeInLoadPLD = timeInLoadEVE = 0;
timeInLoadCSL = timeInLoadSAD = timeInEDFInfo = timeInEDFOpen = timeInAddWaveform = 0; timeInLoadCSL = timeInLoadSAD = timeInEDFInfo = timeInEDFOpen = timeInAddWaveform = 0;
#endif
saveCallback = SaveSession; saveCallback = SaveSession;
} }
@ -775,6 +777,9 @@ int ResmedLoader::Open(const QString & dirpath)
qDebug() << "Total CPU time in LoadCSL" << timeInLoadCSL; qDebug() << "Total CPU time in LoadCSL" << timeInLoadCSL;
qDebug() << "Total CPU time in (BRP) AddWaveform" << timeInAddWaveform; qDebug() << "Total CPU time in (BRP) AddWaveform" << timeInAddWaveform;
qDebug() << "Total CPU time in TimeDelta function" << timeInTimeDelta; qDebug() << "Total CPU time in TimeDelta function" << timeInTimeDelta;
channel_efficiency.clear();
channel_time.clear();
} }
#endif #endif
@ -782,9 +787,6 @@ int ResmedLoader::Open(const QString & dirpath)
// strsess.clear(); // strsess.clear();
// strdate.clear(); // strdate.clear();
channel_efficiency.clear();
channel_time.clear();
qDebug() << "Total Events " << event_cnt; qDebug() << "Total Events " << event_cnt;
qDebug() << "Total new Sessions " << num_new_sessions; qDebug() << "Total new Sessions " << num_new_sessions;
@ -2457,7 +2459,7 @@ void ResDayTask::run()
save(loader, sess); // This is aliased to SaveSession - unless testing save(loader, sess); // This is aliased to SaveSession - unless testing
} }
} }
qDebug() << "Finished summary processing for" << resday->date; // qDebug() << "Finished summary processing for" << resday->date;
return; return;
} }