diff --git a/src/gui/updater/updateinfo.cpp b/src/gui/updater/updateinfo.cpp index 176df1ec2..5b6090ddc 100644 --- a/src/gui/updater/updateinfo.cpp +++ b/src/gui/updater/updateinfo.cpp @@ -88,7 +88,7 @@ UpdateInfo UpdateInfo::parseString(const QString &xml, bool *ok) int errorLine = 0, errorCol = 0; QDomDocument doc; if (!doc.setContent(xml, false, &errorMsg, &errorLine, &errorCol)) { - qCCritical(lcUpdater).noquote().nospace() << errorMsg << " at " << errorLine << "," << errorCol + qCWarning(lcUpdater).noquote().nospace() << errorMsg << " at " << errorLine << "," << errorCol << "\n" << xml.splitRef("\n").value(errorLine-1) << "\n" << QString(" ").repeated(errorCol - 1) << "^\n" << "->" << xml << "<-";