From 5e02bcbd589243bd4f57c6b65b339208ed3a43fa Mon Sep 17 00:00:00 2001 From: stamparm Date: Mon, 18 Mar 2013 12:16:16 +0100 Subject: [PATCH] Minor adjustment --- lib/request/connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request/connect.py b/lib/request/connect.py index 99917fec6..261f98636 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -536,7 +536,7 @@ class Connect(object): return None, None, None elif threadData.retriesCount < conf.retries and not kb.threadException: warnMsg += ". sqlmap is going to retry the request" - logger.critical(warnMsg) + logger.log(logging.CRITICAL if not conf.identityWaf else logging.DEBUG, warnMsg) return Connect._retryProxy(**kwargs) elif kb.testMode: logger.critical(warnMsg)