From aaa7ea15803210a4e493ec35da320f0ab3b90b89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20G=C3=A2teau?= Date: Tue, 11 Dec 2012 16:48:09 +0100 Subject: [PATCH] Not being able to load an applet is worth a kWarning() Especially since the error message is not exposed anywhere else. --- pluginloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pluginloader.cpp b/pluginloader.cpp index 43a5b7cf7..c27e19e57 100644 --- a/pluginloader.cpp +++ b/pluginloader.cpp @@ -152,7 +152,7 @@ Applet *PluginLoader::loadApplet(const QString &name, uint appletId, const QVari } if (!applet) { - kDebug() << "Couldn't load applet \"" << name << "\"! reason given: " << error; + kWarning() << "Could not load applet" << name << "! reason given:" << error; } return applet;