mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Clean up unnecessary debug output
This commit is contained in:
parent
f7b7590207
commit
8c997a68e8
@ -15,7 +15,7 @@
|
||||
#include <QObject>
|
||||
#include <QThread>
|
||||
|
||||
#define DEBUG_EFFICIENCY 1
|
||||
// #define DEBUG_EFFICIENCY 1 // Developers can define this for qmake if they want it
|
||||
|
||||
#include <QLocale>
|
||||
#include "Graphs/glcommon.h"
|
||||
|
@ -67,8 +67,10 @@ ResmedLoader::ResmedLoader() {
|
||||
#endif
|
||||
m_type = MT_CPAP;
|
||||
|
||||
#ifdef DEBUG_EFFICIENCY
|
||||
timeInTimeDelta = timeInLoadBRP = timeInLoadPLD = timeInLoadEVE = 0;
|
||||
timeInLoadCSL = timeInLoadSAD = timeInEDFInfo = timeInEDFOpen = timeInAddWaveform = 0;
|
||||
#endif
|
||||
|
||||
saveCallback = SaveSession;
|
||||
}
|
||||
@ -775,6 +777,9 @@ int ResmedLoader::Open(const QString & dirpath)
|
||||
qDebug() << "Total CPU time in LoadCSL" << timeInLoadCSL;
|
||||
qDebug() << "Total CPU time in (BRP) AddWaveform" << timeInAddWaveform;
|
||||
qDebug() << "Total CPU time in TimeDelta function" << timeInTimeDelta;
|
||||
|
||||
channel_efficiency.clear();
|
||||
channel_time.clear();
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -782,9 +787,6 @@ int ResmedLoader::Open(const QString & dirpath)
|
||||
// strsess.clear();
|
||||
// strdate.clear();
|
||||
|
||||
channel_efficiency.clear();
|
||||
channel_time.clear();
|
||||
|
||||
qDebug() << "Total Events " << event_cnt;
|
||||
qDebug() << "Total new Sessions " << num_new_sessions;
|
||||
|
||||
@ -2457,7 +2459,7 @@ void ResDayTask::run()
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user