diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-08-05 20:13:16 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-08-05 20:13:16 +0200 |
commit | 2dcf398b41b198823f058182b4460f83ca217aee (patch) | |
tree | cf3cd416f612757bc7b953e77999423b37744f86 /module/PluginThread.py | |
parent | api account fix (diff) | |
download | pyload-2dcf398b41b198823f058182b4460f83ca217aee.tar.xz |
fixes, closed #361
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r-- | module/PluginThread.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py index b415d7d60..be29a680e 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -600,8 +600,11 @@ class InfoThread(PluginThread): pyfile.plugin.urls.extend(pack[1]) data = self.m.core.pluginManager.parseUrls(pyfile.plugin.urls) - except : - pass + + self.m.log.debug("Got %d links." % len(data)) + + except Exception, e: + self.m.log.debug("Pre decrypting error: %s" % str(e)) finally: pyfile.release() |