summaryrefslogtreecommitdiffstats
path: root/module/plugins/PluginManager.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-28 04:48:14 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-28 04:48:14 +0100
commit127bfffafbbae49fc4aaf0db677dcc5f73e7720d (patch)
tree4707af8003e007e5c9d9f70f6f6f87c42cb069e5 /module/plugins/PluginManager.py
parentMerge pull request #2129 from thadrien/pull-request-SimpleHoster (diff)
parentIncrease version number in SimpleCrypter.py (diff)
downloadpyload-127bfffafbbae49fc4aaf0db677dcc5f73e7720d.tar.xz
Merge pull request #2128 from thadrien/pull-request-dlprotect
Pull request dlprotect
Diffstat (limited to 'module/plugins/PluginManager.py')
-rw-r--r--module/plugins/PluginManager.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/module/plugins/PluginManager.py b/module/plugins/PluginManager.py
index f3f5f47bc..6c1d22359 100644
--- a/module/plugins/PluginManager.py
+++ b/module/plugins/PluginManager.py
@@ -272,6 +272,9 @@ class PluginManager:
self.log.error(_("Error importing %(name)s: %(msg)s") % {"name": name, "msg": str(e)})
if self.core.debug:
print_exc()
+ else:
+ self.log.debug("Plugin %s not found" % name)
+ self.log.debug("Available plugins : %s" % str(plugins))
def loadClass(self, type, name):
"""Returns the class of a plugin with the same name"""