pgtoolkit/coloredformatter.py
author Radek Brich <radek.brich@devl.cz>
Thu, 15 Dec 2011 18:26:04 +0100
changeset 25 20a72a9a2d09
parent 13 16dc5dec9c36
child 78 64c62ac8f65d
permissions -rw-r--r--
Fix bad name.

import logging

from pgtoolkit import highlight


class ColoredFormatter(logging.Formatter):
    def __init__(self, fmt, datefmt):
        logging.Formatter.__init__(self, fmt, datefmt)

    def format(self, record):
        color = ()
        if record.levelno == 21:
            color = (2, None)
        if record.levelno == logging.ERROR and not record.exc_info is None:
            color = (11, 1)
        if color:
            origmsg = record.msg
            f,b = color
            record.msg = highlight(1, f, b) + record.msg + highlight(0)
            res = logging.Formatter.format(self, record)
            record.msg = origmsg
        else:
            res = logging.Formatter.format(self, record)
        return res