# HG changeset patch # User Sylvain Thénault # Date 1285231745 -7200 # Node ID de6264ac7c50b992d743109bf0b75c901a5088d2 # Parent 0d4dd5f6f05cfc6fc913964569831c06b6c19720 [publisher] add session id when logging published path diff -r 0d4dd5f6f05c -r de6264ac7c50 web/application.py --- a/web/application.py Thu Sep 23 10:48:43 2010 +0200 +++ b/web/application.py Thu Sep 23 10:49:05 2010 +0200 @@ -369,7 +369,8 @@ """ path = path or 'view' # don't log form values they may contains sensitive information - self.info('publish "%s" (form params: %s)', path, req.form.keys()) + self.info('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()