firstly,thanks you very much to develop the nice project;
here is my question:
when I use logger.setLevel ,i want use colorlog.XXXXX instead of logging.XXXX as level
my code now is:
import colorlog
logger=colorlog.getLogger("test_colorlog")
import logging
logger.setLevel(logging.DEBUG)
but i hope:
import colorlog
logger=colorlog.getLogger("test_colorlog")
logger.setLevel(colorlog.DEBUG)
Would you consider adding this feature? thanks