From 68ce51bfd4cf5fadf1cd8d197386150a5e9085d4 Mon Sep 17 00:00:00 2001 From: stamparm Date: Fri, 22 Feb 2013 12:15:38 +0100 Subject: [PATCH] Changing from warn to info for no WAF found --- lib/controller/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index a510119d7..dacb6b709 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -1086,8 +1086,8 @@ def identifyWaf(): errMsg += "consider usage of tamper scripts (option '--tamper')" logger.critical(errMsg) else: - warnMsg = "no WAF/IDS/IPS product has been identified" - logger.warn(warnMsg) + infoMsg = "no WAF/IDS/IPS product has been identified" + logger.info(infoMsg) return retVal