def __init__()

in custom_image_cli/helper/logging.py [0:0]


    def __init__(self):
        self.log = logging.getLogger("logger")
        stream = logging.StreamHandler()
        formatter = colorlog.ColoredFormatter(
            "%(log_color)s[%(levelname)s]%(reset)s "
            "%(message)s",
            reset=True,
            log_colors={
                'DEBUG': 'cyan',
                'INFO': 'green',
                'WARNING': 'yellow',
                'ERROR': 'red',
                'CRITICAL': 'red',
            })
        stream.setFormatter(formatter)
        self.log.addHandler(stream)
        self.log.setLevel(logging.INFO)