mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor bug fix (level names not properly used in non-logger output)
This commit is contained in:
parent
f24c8c6b6b
commit
b2b3b3b5a6
|
@ -760,6 +760,7 @@ def setColor(message, bold=False):
|
|||
if bold:
|
||||
retVal = colored(message, color=None, on_color=None, attrs=("bold",))
|
||||
elif level:
|
||||
level = getattr(logging, level, None) if isinstance(level, basestring) else level
|
||||
_ = LOGGER_HANDLER.level_map.get(level)
|
||||
if _:
|
||||
background, foreground, bold = _
|
||||
|
|
Loading…
Reference in New Issue
Block a user