diff options
Diffstat (limited to 'module/ThreadManager.py')
-rw-r--r-- | module/ThreadManager.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/ThreadManager.py b/module/ThreadManager.py index a48d7e729..5de1aca35 100644 --- a/module/ThreadManager.py +++ b/module/ThreadManager.py @@ -22,6 +22,7 @@ from threading import Event from subprocess import Popen from os.path import exists from time import sleep +from traceback import print_exc from module.network.Request import getURL import PluginThread @@ -157,6 +158,8 @@ class ThreadManager: job.initPlugin() except Exception, e: self.log.critical(str(e)) + if self.core.debug: + print_exc() if job.plugin.__type__ == "hoster": if free: @@ -174,4 +177,4 @@ class ThreadManager: -
\ No newline at end of file + |