aboutsummaryrefslogtreecommitdiff
path: root/src/browser.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-06-22 09:40:26 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-06-22 09:40:26 +0200
commit64e1c1658318c9ea01ad1e56d8ca58d2e5cf860f (patch)
treed13f570c597e5ec82c4292ab3d568752518e0d20 /src/browser.cpp
parentProfileEditor: add Delete Session and Delete All buttons to Cookies (diff)
downloadsmolbote-64e1c1658318c9ea01ad1e56d8ca58d2e5cf860f.tar.xz
Update manpage
Diffstat (limited to 'src/browser.cpp')
-rw-r--r--src/browser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/browser.cpp b/src/browser.cpp
index e55d063..29a02b7 100644
--- a/src/browser.cpp
+++ b/src/browser.cpp
@@ -41,11 +41,9 @@ inline Plugin loadPluginFromPath(const QString &path)
p.instance = std::shared_ptr<QObject>(loader.instance());
-#ifdef QT_DEBUG
} else {
qDebug("Loading pluing: %s [failed]", qUtf8Printable(path));
qDebug("%s", qUtf8Printable(loader.errorString()));
-#endif
}
return p;
@@ -56,6 +54,7 @@ inline QVector<Plugin> loadPlugins(const QString &path)
QVector<Plugin> list;
QFileInfo location(path);
if(!location.exists()) {
+ qDebug("Plugin location doesn't exist.");
return list;
}