mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
removed debug message that could cause confusion
This commit is contained in:
@@ -111,8 +111,6 @@ def urlencode(value, safe="%&=", convall=False, limit=False):
|
|||||||
|
|
||||||
if limit and len(result) > URLENCODE_CHAR_LIMIT:
|
if limit and len(result) > URLENCODE_CHAR_LIMIT:
|
||||||
if count >= len(URLENCODE_FAILSAFE_CHARS):
|
if count >= len(URLENCODE_FAILSAFE_CHARS):
|
||||||
dbgMsg = "failed to fully shorten urlencoding value"
|
|
||||||
logger.debug(dbgMsg)
|
|
||||||
break
|
break
|
||||||
|
|
||||||
while count < len(URLENCODE_FAILSAFE_CHARS):
|
while count < len(URLENCODE_FAILSAFE_CHARS):
|
||||||
|
|||||||
Reference in New Issue
Block a user