wsgi/handler.py
branchstable
changeset 7085 36e91d19188b
parent 7083 b8e35cde46e9
child 8272 18893bb969d2
--- a/wsgi/handler.py	Tue Mar 15 21:36:06 2011 +0100
+++ b/wsgi/handler.py	Wed Mar 16 09:40:56 2011 +0100
@@ -193,6 +193,10 @@
             content = self.appli.need_login_content(req)
         return WSGIResponse(code, req, content)
 
+    # these are overridden by set_log_methods below
+    # only defining here to prevent pylint from complaining
+    info = warning = error = critical = exception = debug = lambda msg,*a,**kw: None
+
 
 from logging import getLogger
 from cubicweb import set_log_methods