Commit fe392aba authored by Jérome Perrin's avatar Jérome Perrin

Added full exception traceback to the LOG


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5212 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5fb9c51d
......@@ -504,6 +504,7 @@ class PDFForm(File):
value = getEngine().getContext(context).evaluate(compiled_tales)
return value
except Exception, e :
LOG('PDFForm', PROBLEM, "Exception in cell %s"%cell_name, e)
raise e.__class__, "Exception in %s :\n %s"%(cell_name, e)
security.declareProtected(Permissions.ManagePortal, 'setAllCellTALES')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment