summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Chauvat <nicolas.chauvat@logilab.fr>2007-08-16 13:47:49 +0200
committerNicolas Chauvat <nicolas.chauvat@logilab.fr>2007-08-16 13:47:49 +0200
commitbb20c17c989fa99f267eed5a6f0d4095c0c02b28 (patch)
treea92dcbb8071d12a426342fded0cc4a84b4467ae7
parentdd10488bf84192437b74d3fd46b8b50131451a19 (diff)
downloadlogilab-common-bb20c17c989fa99f267eed5a6f0d4095c0c02b28.tar.gz
add logging_ext and its ColorFormatter
-rw-r--r--logging_ext.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/logging_ext.py b/logging_ext.py
new file mode 100644
index 0000000..b013838
--- /dev/null
+++ b/logging_ext.py
@@ -0,0 +1,60 @@
+# -*- encoding: iso-8859-1 -*-
+# Copyright (c) 2006 LOGILAB S.A. (Paris, FRANCE).
+# http://www.logilab.fr/ -- mailto:contact@logilab.fr
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
+#
+# You should have received a copy of the GNU General Public License along with
+# this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+""" Copyright (c) 2007 LOGILAB S.A. (Paris, FRANCE).
+ http://www.logilab.fr/ -- mailto:contact@logilab.fr
+
+This module provides extensions to the logging module from the standard library.
+"""
+
+import logging
+
+from logilab.common.textutils import colorize_ansi
+
+class ColorFormatter(logging.Formatter):
+ """
+ A color Formatter for the logging standard module.
+
+ By default, colorize CRITICAL and ERROR in red, WARNING in orange
+ and INFO in yellow.
+
+ self.colors is customizable via the constructor.
+
+ self.colorfilters is a list of functions that get the LogRecord
+ and return a color name or None.
+ """
+
+ def __init__(self, fmt=None, datefmt=None, colors=None):
+ logging.Formatter.__init__(self, fmt, datefmt)
+ self.colorfilters = []
+ self.colors = colors or {'CRITICAL': 'red',
+ 'ERROR': 'red',
+ 'WARNING': 'orange',
+ 'INFO': 'yellow',
+ }
+ assert isinstance(self.colors, dict)
+
+ def format(self, record):
+ msg = logging.Formatter.format(self, record)
+ if record.levelname in self.colors:
+ color = self.colors[record.levelname]
+ return colorize_ansi(msg, color)
+ else:
+ for cf in self.colorfilters:
+ color = cf(record)
+ if color:
+ return colorize_ansi(msg, color)
+ return msg