[utilities/kdebugsettings] src/quickapps: Use qWarning
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit c5feaadd755b6344f86aa80a6967a928bdd30b99 by Laurent Montel.
Committed on 19/07/2026 at 16:23.
Pushed by mlaurent into branch 'master'.
Use qWarning
M +1 -1 src/quickapps/main.cpp
https://invent.kde.org/utilities/kdebugsettings/-/commit/c5feaadd755b6344f86aa80a6967a928bdd30b99
diff --git a/src/quickapps/main.cpp b/src/quickapps/main.cpp
index 1241bcc5..ede7b3d1 100644
--- a/src/quickapps/main.cpp
+++ b/src/quickapps/main.cpp
@@ -134,7 +134,7 @@ int main(int argc, char **argv)
engine.load(QUrl(u"qrc:///main.qml"_s));
// Exit on QML load error.
if (engine.rootObjects().isEmpty()) {
- qDebug() << " Error during loading main.qml";
+ qWarning() << " Error during loading main.qml";
return 1;
}
return app.exec();