From 8c997a68e8531b8948a417f8cd103e5f9a51f1d5 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Wed, 5 Jan 2022 15:35:35 -0500 Subject: [PATCH] Clean up unnecessary debug output --- oscar/SleepLib/common.h | 2 +- oscar/SleepLib/loader_plugins/resmed_loader.cpp | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/oscar/SleepLib/common.h b/oscar/SleepLib/common.h index 34c9acac..a4262529 100644 --- a/oscar/SleepLib/common.h +++ b/oscar/SleepLib/common.h @@ -15,7 +15,7 @@ #include #include -#define DEBUG_EFFICIENCY 1 +// #define DEBUG_EFFICIENCY 1 // Developers can define this for qmake if they want it #include #include "Graphs/glcommon.h" diff --git a/oscar/SleepLib/loader_plugins/resmed_loader.cpp b/oscar/SleepLib/loader_plugins/resmed_loader.cpp index 7f74a366..66ae9804 100644 --- a/oscar/SleepLib/loader_plugins/resmed_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_loader.cpp @@ -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; }