summaryrefslogtreecommitdiff
path: root/logging_ext.py
diff options
context:
space:
mode:
authorNicolas Chauvat <nicolas.chauvat@logilab.fr>2007-08-20 10:57:58 +0200
committerNicolas Chauvat <nicolas.chauvat@logilab.fr>2007-08-20 10:57:58 +0200
commit003e937d1d05c0ee003fd0e80e865fc001df305c (patch)
tree64b37f3edadd46449bdca8d74bf5a0238a852530 /logging_ext.py
parent9f0cb15c04b93b4988c9b3c49df8c5bb18de0796 (diff)
downloadlogilab-common-003e937d1d05c0ee003fd0e80e865fc001df305c.tar.gz
color warnings in magenta, not orange which does not exist
Diffstat (limited to 'logging_ext.py')
-rw-r--r--logging_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/logging_ext.py b/logging_ext.py
index b013838..08a1a97 100644
--- a/logging_ext.py
+++ b/logging_ext.py
@@ -42,7 +42,7 @@ class ColorFormatter(logging.Formatter):
self.colorfilters = []
self.colors = colors or {'CRITICAL': 'red',
'ERROR': 'red',
- 'WARNING': 'orange',
+ 'WARNING': 'magenta',
'INFO': 'yellow',
}
assert isinstance(self.colors, dict)