如何用python在日志文件中写彩色文本

时间:2014-03-05 07:15:27

标签: python logging

我有一个名为LogFile.log的日志文件 我使用写入文件的方式在此文件中写入不同的日志:

logfile = open(LogFile.log, 'a')
logFile.write("<< INFO >> ")

如何用不同颜色编写我的日志(例如,红色表示错误,绿色表示信息,橙色表示调试)?

我正在使用Python 2.5,因为它与我正在使用的其他工具完全兼容。

3 个答案:

答案 0 :(得分:1)

您可以使用ANSI颜色代码将彩色线条写入终端(请参阅Printing to STDOUT and log file while removing ANSI color codes),但不能将彩色线条写入文件。

答案 1 :(得分:-1)

如果我错了,请纠正我,但我认为您无法将彩色消息输出到utf-8日志文件。

如前所述,您可以使用彩色CLI或尝试实现自己的记录器,例如将日志消息输出到html。 Html将能够实现着色。

答案 2 :(得分:-4)

您可以将颜色与python日志模块集成

BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)

#The background is set with 40 plus the number of the color, and the foreground with 30

#These are the sequences need to get colored ouput
RESET_SEQ = "\033[0m"
COLOR_SEQ = "\033[1;%dm"
BOLD_SEQ = "\033[1m"

def formatter_message(message, use_color = True):
    if use_color:
        message = message.replace("$RESET", RESET_SEQ).replace("$BOLD", BOLD_SEQ)
    else:
        message = message.replace("$RESET", "").replace("$BOLD", "")
    return message

COLORS = {
    'WARNING': YELLOW,
    'INFO': WHITE,
    'DEBUG': BLUE,
    'CRITICAL': YELLOW,
    'ERROR': RED
}

class ColoredFormatter(logging.Formatter):
    def __init__(self, msg, use_color = True):
        logging.Formatter.__init__(self, msg)
        self.use_color = use_color

    def format(self, record):
        levelname = record.levelname
        if self.use_color and levelname in COLORS:
            levelname_color = COLOR_SEQ % (30 + COLORS[levelname]) + levelname + RESET_SEQ
            record.levelname = levelname_color
        return logging.Formatter.format(self, record)

如果你想使用这个东西,那么创建你自己的记录器

# Custom logger class with multiple destinations
class ColoredLogger(logging.Logger):
    FORMAT = "[$BOLD%(name)-20s$RESET][%(levelname)-18s]  %(message)s ($BOLD%(filename)s$RESET:%(lineno)d)"
    COLOR_FORMAT = formatter_message(FORMAT, True)
    def __init__(self, name):
        logging.Logger.__init__(self, name, logging.DEBUG)                

        color_formatter = ColoredFormatter(self.COLOR_FORMAT)

        console = logging.StreamHandler()
        console.setFormatter(color_formatter)

        self.addHandler(console)
        return


logging.setLoggerClass(ColoredLogger)