From bf3c760057a557c642c7738934653afa8edd6677 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Fri, 5 Nov 2021 14:19:21 -0400 Subject: [PATCH] Clarify debug message when encountering DS2 without default keys. --- oscar/SleepLib/loader_plugins/prs1_loader.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 4659bd5c..21768163 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -912,8 +912,10 @@ bool PRS1Loader::CreateMachineFromProperties(QString propertyfile) qWarning().noquote() << "Model" << model_number << QString("(F%1V%2)").arg(family).arg(familyVersion) << "unsupported."; info.modelnumber = QObject::tr("model %1").arg(model_number); } else if (propertyfile.endsWith("PROP.BIN")) { - // TODO: Remove this once DS2 is supported. - qWarning() << "DreamStation 2 not supported:" << propertyfile; + // TODO: If we end up releasing without support for non-default keys, + // add a loaderSpecificAlert(QString & message, bool deferred=false) signal + // and use that instead of telling the user that the DS2 is entirely unsupported. + qWarning() << "DreamStation 2 not using default keys:" << propertyfile; info.modelnumber = QObject::tr("DreamStation 2"); } else { qWarning() << "Unable to identify model or series!";