UserInputMapper: Make error an error.

This commit is contained in:
Lubosz Sarnecki 2024-03-02 17:00:54 +01:00 committed by Ada
parent 86717c75c5
commit d8ea8acf14

View file

@ -1195,9 +1195,9 @@ Mapping::Pointer UserInputMapper::parseMapping(const QString& json) {
QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8(), &error); QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8(), &error);
// check validity of the document // check validity of the document
if (doc.isNull()) { if (doc.isNull()) {
qCDebug(controllers) << "Invalid JSON...\n"; qCCritical(controllers) << "Invalid JSON...\n";
qCDebug(controllers) << error.errorString(); qCCritical(controllers) << error.errorString();
qCDebug(controllers) << "JSON was:\n" << json << Qt::endl; qCCritical(controllers) << "JSON was:\n" << json << Qt::endl;
return Mapping::Pointer(); return Mapping::Pointer();
} }