diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-15 12:12:52 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-15 12:12:52 +0200 |
commit | 23e5c88925b36a3d7c3fd31be67236f22da41f58 (patch) | |
tree | 5d4ec1f12944548b568c939c2c96bdb43e32e639 | |
parent | d2d2f9e8f561b121a0ce0c1e626d503bf5de2aa2 (diff) | |
download | sink-23e5c88925b36a3d7c3fd31be67236f22da41f58.tar.gz sink-23e5c88925b36a3d7c3fd31be67236f22da41f58.zip |
More debug output when failing to load resource plugins.
-rw-r--r-- | common/resource.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/resource.cpp b/common/resource.cpp index cd0c4e0..706d8ba 100644 --- a/common/resource.cpp +++ b/common/resource.cpp | |||
@@ -124,6 +124,7 @@ ResourceFactory *ResourceFactory::load(const QByteArray &resourceName) | |||
124 | } | 124 | } |
125 | 125 | ||
126 | qWarning() << "Failed to find factory for resource:" << resourceName; | 126 | qWarning() << "Failed to find factory for resource:" << resourceName; |
127 | qWarning() << "Looked into the following directories: " << QCoreApplication::instance()->libraryPaths(); | ||
127 | return nullptr; | 128 | return nullptr; |
128 | } | 129 | } |
129 | 130 | ||