Replace remaining qDebug()s by report_info()

The only case left is in android.cpp, though that is only compiled
when compiling the full desktop app on Android. I.e. never. So
don't bother for now.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-03-26 20:23:50 +01:00 committed by bstoeger
parent 8867edffe8
commit b320942343
8 changed files with 18 additions and 18 deletions

View file

@ -16,6 +16,7 @@
#include "core/divesite.h"
#include "core/divelog.h"
#include "core/device.h"
#include "core/errorhelper.h"
#include "core/trip.h"
#include "core/import-csv.h"
#include "core/xmlparams.h"
@ -518,7 +519,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy)
headers.append("Sample pressure");
} else {
// We do not know about this value
qDebug() << "Seabear import found an un-handled field: " << columnText;
report_info("Seabear import found an un-handled field: %s", qPrintable(columnText));
headers.append("");
}
}