web/application.py
changeset 8696 0bb18407c053
parent 8695 358d8bed9626
child 8711 64a400eea6dd
equal deleted inserted replaced
8695:358d8bed9626 8696:0bb18407c053
   423         :rtype: str
   423         :rtype: str
   424         :return: the result of the pusblished url
   424         :return: the result of the pusblished url
   425         """
   425         """
   426         # don't log form values they may contains sensitive information
   426         # don't log form values they may contains sensitive information
   427         self.debug('publish "%s" (%s, form params: %s)',
   427         self.debug('publish "%s" (%s, form params: %s)',
   428                    path, req.session.sessionid, req.form.keys())
   428                    path, req.session.sessionid, list(req.form))
   429         # remove user callbacks on a new request (except for json controllers
   429         # remove user callbacks on a new request (except for json controllers
   430         # to avoid callbacks being unregistered before they could be called)
   430         # to avoid callbacks being unregistered before they could be called)
   431         tstart = clock()
   431         tstart = clock()
   432         commited = False
   432         commited = False
   433         try:
   433         try: