summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-01-06 10:25:51 +0100
committerAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-01-06 10:25:51 +0100
commitcb4f9278e93705adf1802b6e337e3cbbfd29dbdd (patch)
treee2af484b9ec092132dfdad9e81f3b5cc75e31bc5
parent8419831b3f6995b060da1b1efc46da452e2f45d9 (diff)
downloadlogilab-common-cb4f9278e93705adf1802b6e337e3cbbfd29dbdd.tar.gz
[logging] the lldebug threshold level was an implementation detail of cubicweb, there's no reason why it should be in lgc
-rw-r--r--logging_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/logging_ext.py b/logging_ext.py
index 16f3b52..fe669ba 100644
--- a/logging_ext.py
+++ b/logging_ext.py
@@ -18,7 +18,7 @@ from logilab.common.textutils import colorize_ansi
def set_log_methods(cls, logger):
"""bind standart logger's methods as methods on the class"""
cls.__logger = logger
- for attr in ('lldebug', 'debug', 'info', 'warning', 'error', 'critical', 'exception'):
+ for attr in ('debug', 'info', 'warning', 'error', 'critical', 'exception'):
setattr(cls, attr, getattr(logger, attr))