Changing logging type to warning for parsed error messages

This commit is contained in:
Miroslav Stampar 2013-05-18 16:17:56 +02:00
parent dcea745576
commit f24c8c6b6b

View File

@ -285,7 +285,7 @@ def processResponse(page, responseHeaders):
msg = extractErrorMessage(page)
if msg:
logger.info("parsed error message: '%s'" % msg)
logger.warning("parsed error message: '%s'" % msg)
if kb.originalPage is None:
for regex in (EVENTVALIDATION_REGEX, VIEWSTATE_REGEX):