# HG changeset patch # User Aurelien Campeas # Date 1336573401 -7200 # Node ID 637b934bc742e99f1ee5d1cb9a578bfd9dfd045a # Parent 94f26e3b09bf9338cbc9794f0692137221d4ef5d [app] turn these info into debug logs (this being too chatty for .info) diff -r 94f26e3b09bf -r 637b934bc742 web/application.py --- a/web/application.py Wed Apr 18 12:01:31 2012 +0200 +++ b/web/application.py Wed May 09 16:23:21 2012 +0200 @@ -424,8 +424,8 @@ :return: the result of the pusblished url """ # don't log form values they may contains sensitive information - self.info('publish "%s" (%s, form params: %s)', - path, req.session.sessionid, req.form.keys()) + self.debug('publish "%s" (%s, form params: %s)', + path, req.session.sessionid, req.form.keys()) # remove user callbacks on a new request (except for json controllers # to avoid callbacks being unregistered before they could be called) tstart = clock() @@ -500,7 +500,7 @@ # cache to avoid memory usage req.drop_entity_cache() self.add_undo_link_to_msg(req) - self.info('query %s executed in %s sec', req.relative_path(), clock() - tstart) + self.debug('query %s executed in %s sec', req.relative_path(), clock() - tstart) return result ### Error handler