diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-06-22 09:40:26 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-06-22 09:40:26 +0200 |
commit | 64e1c1658318c9ea01ad1e56d8ca58d2e5cf860f (patch) | |
tree | d13f570c597e5ec82c4292ab3d568752518e0d20 /src | |
parent | ProfileEditor: add Delete Session and Delete All buttons to Cookies (diff) | |
download | smolbote-64e1c1658318c9ea01ad1e56d8ca58d2e5cf860f.tar.xz |
Update manpage
Diffstat (limited to 'src')
-rw-r--r-- | src/browser.cpp | 3 |
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; } |