From b178dba420a1213e699493d5ff5af1a5e21290a6 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Thu, 6 Feb 2020 17:17:08 -0500 Subject: [PATCH] add timezone test for invalid datetimes --- oscar/SleepLib/loader_plugins/resmed_loader.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/oscar/SleepLib/loader_plugins/resmed_loader.cpp b/oscar/SleepLib/loader_plugins/resmed_loader.cpp index 0fe577ba..a289f336 100644 --- a/oscar/SleepLib/loader_plugins/resmed_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_loader.cpp @@ -1494,7 +1494,7 @@ void BackupSTRfiles( const QString path, const QString strBackupPath, MachineInf STRmap[date] = STRFile(backupfile, stredf); } // end for walking the STR files list -// qDebug() << "STRmap has" << STRmap.size{} << "entries"; + qDebug() << "STRmap has" << STRmap.size() << "entries"; } QHash parseIdentLine( const QString line, MachineInfo * info) @@ -1649,6 +1649,8 @@ EDFduration getEDFDuration(const QString & filename) } if ( ! startDate.isValid() ) { qDebug() << "Invalid date time retreieved parsing EDF duration for" << filename; + qDebug() << "Time zone(Utc) is" << startDate.timeZone.abbreviation(QDateTime::currentDateTimeUtc()); + qDebug() << "Time zone is" << startDate.timeZone.abbreviation(QDateTime::currentDateTime()); return EDFduration(0, 0, filename); }