mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-08 01:13:17 +01:00
minor update
This commit is contained in:
parent
cf17debf79
commit
c6bf0e43af
3 changed files with 7 additions and 7 deletions
|
|
@ -286,7 +286,7 @@ def start():
|
|||
e += ", skipping to next url"
|
||||
logger.error(e)
|
||||
else:
|
||||
logger.error(e)
|
||||
logger.critical(e)
|
||||
return False
|
||||
|
||||
if conf.loggedToOut:
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ class Google:
|
|||
except socket.timeout:
|
||||
warnMsg = "connection timed out while trying "
|
||||
warnMsg += "to get error page information (%d)" % e.code
|
||||
logger.warn(warnMsg)
|
||||
logger.critical(warnMsg)
|
||||
return None
|
||||
except (urllib2.URLError, socket.error, socket.timeout), _:
|
||||
errMsg = "unable to connect to Google"
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ def main():
|
|||
start()
|
||||
except exceptionsTuple, e:
|
||||
e = getUnicode(e)
|
||||
logger.error(e)
|
||||
logger.critical(e)
|
||||
closeDumper(False, e)
|
||||
|
||||
except KeyboardInterrupt, _:
|
||||
|
|
|
|||
Loading…
Reference in a new issue