Remove diabled debugging output in subsurfacewebservices.cpp

Why bother with commented out code?

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-03-26 14:16:28 +01:00 committed by bstoeger
parent 8677d1f325
commit 9febfdd084

View file

@ -25,7 +25,6 @@
#include <QXmlStreamReader>
#include <qdesktopservices.h>
#include <QShortcut>
#include <QDebug>
#include <errno.h>
#include <zip.h>
@ -175,15 +174,12 @@ static DiveListResult parseDiveLogsDeDiveList(const QByteArray &xmlData)
if (nameCmp(reader, "DiveDates") != 0) {
if (nameCmp(reader, "Login") == 0) {
QString status = reader.readElementText();
// qDebug() << "Login status:" << status;
// Note: there has to be a better way to determine a successful login...
if (status == "failed") {
result.errorCondition = "Login failed";
goto out;
}
} else {
// qDebug() << "Skipping" << reader.name();
}
continue;
}
@ -191,12 +187,9 @@ static DiveListResult parseDiveLogsDeDiveList(const QByteArray &xmlData)
// process <DiveDates>
seenDiveDates = true;
while (reader.readNextStartElement()) {
if (nameCmp(reader, "date") != 0) {
// qDebug() << "Skipping" << reader.name();
if (nameCmp(reader, "date") != 0)
continue;
}
auto id = reader.attributes().value("divelogsId");
// qDebug() << "Found" << reader.name() << "with id =" << id;
if (!id.isEmpty()) {
result.idList += id.toLatin1();
result.idList += ',';