mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Related to the #3588
This commit is contained in:
@@ -100,7 +100,7 @@ def exceptionHandledFunction(threadFunction, silent=False):
|
||||
errMsg = ex.message if isinstance(ex, SqlmapBaseException) else "%s: %s" % (type(ex).__name__, ex.message)
|
||||
logger.error("thread %s: '%s'" % (threading.currentThread().getName(), errMsg))
|
||||
|
||||
if conf.get("verbose") > 1:
|
||||
if conf.get("verbose") > 1 and not isinstance(ex, (SqlmapUserQuitException,)):
|
||||
traceback.print_exc()
|
||||
|
||||
def setDaemon(thread):
|
||||
|
||||
Reference in New Issue
Block a user