This commit is contained in:
Miroslav Stampar
2018-10-14 22:17:10 +02:00
parent 880d438418
commit 6af127cb64
4 changed files with 12 additions and 12 deletions

View File

@@ -92,7 +92,7 @@ def exceptionHandledFunction(threadFunction, silent=False):
kb.threadException = True
raise
except Exception, ex:
if not silent:
if not silent and kb.get("threadContinue"):
logger.error("thread %s: %s" % (threading.currentThread().getName(), ex.message))
if conf.get("verbose") > 1: