[PyWebMail-Checkins] webmail debug_parse.py,1.10,1.11
Status: Beta
Brought to you by:
dubnerm
From: Michael D. <du...@us...> - 2008-03-02 10:50:27
|
Update of /cvsroot/pywebmail/webmail In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20283 Modified Files: debug_parse.py Log Message: fine-tune logging Index: debug_parse.py =================================================================== RCS file: /cvsroot/pywebmail/webmail/debug_parse.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** debug_parse.py 15 Jun 2007 16:13:37 -0000 1.10 --- debug_parse.py 2 Mar 2008 10:50:26 -0000 1.11 *************** *** 137,144 **** --- 137,149 ---- ok = webmail.utils.xgetopt.Setup.setup_logging(self) if ok: + webmail.utils.xlogging.logConfig("webmail.server.XSocketServer.get_request", verbose=self.verbose-2) + webmail.utils.xlogging.logConfig("webmail.client.config.parse.action.xdebug", verbose=self.verbose-2) webmail.utils.xlogging.logConfig("webmail.client.config.parse", verbose=self.verbose-2) webmail.utils.xlogging.logConfig("webmail.utils.xhttp", verbose=self.verbose-1) webmail.utils.xlogging.logConfig("webmail.utils.xhttp.result", verbose=self.verbose-2) + webmail.utils.xlogging.logConfig("webmail.utils.xhttp.utils", verbose=self.verbose-2) webmail.utils.xlogging.logConfig("webmail.utils", verbose=self.verbose-1) + webmail.utils.xlogging.logConfig("cookielib", verbose=self.verbose-1) + webmail.utils.xlogging.logConfig("webmail.utils.POP3Server", verbose=self.verbose) return ok |