Finished the nuking of VERBOSE and PRINTF.

This commit is contained in:
Jeremy Fincher 2004-01-02 21:32:31 +00:00
parent 68591b1ec9
commit e9c67b25a5

View File

@ -136,10 +136,6 @@ class ColorizedFormatter(Formatter):
color = ansi.RED
elif record.levelno == logging.WARNING:
color = ansi.YELLOW
elif record.levelno == logging.VERBOSE:
color = ansi.BLUE
elif record.levelno == logging.PRINTF:
color = ansi.CYAN
return ''.join([color,
Formatter.format(self, record, *args, **kwargs),
ansi.RESET])