Skip to content

Commit

Permalink
kio: print plugin name when loading fails
Browse files Browse the repository at this point in the history
  • Loading branch information
ttuegel committed Jun 18, 2017
1 parent faf0d3e commit fc72335
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Index: kio-5.33.0/src/kiod/kiod_main.cpp
===================================================================
--- kio-5.33.0.orig/src/kiod/kiod_main.cpp
+++ kio-5.33.0/src/kiod/kiod_main.cpp
@@ -60,7 +60,7 @@ void KIOD::loadModule(const QString &nam
module = factory->create<KDEDModule>();
}
if (!module) {
- qCWarning(KIOD_CATEGORY) << "Error loading plugin:" << loader.errorString();
+ qCWarning(KIOD_CATEGORY) << "Error loading plugin" << name << loader.errorString();
return;
}
module->setModuleName(name); // makes it register to DBus
1 change: 1 addition & 0 deletions pkgs/development/libraries/kde-frameworks/kio/series
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
samba-search-path.patch
kio-debug-module-loader.patch

0 comments on commit fc72335

Please sign in to comment.