Content Administration provides three form handlers to view and edit assets. You can turn on debugging for these form handler components by setting their loggingDebug properties to true in localconfig. The standard form handler component paths are:

You can also turn on debugging within the JSP assetEditPage.jsp by modifying it in two locations. To turn on debugging for the page rendering, modify the JSP as follows:

<!-- Import form handler specified in mapping -->
<dspel:importbean var="formHandler" bean="${imapformHandler.path}"/>
<c:set target="${formHandler}" property="loggingDebug" value="true"/>

To turn on debugging for the form submit:

<dspel:input type="hidden" value="${assetInfoPath}" priority="100"
bean="${imap.formHandler.path}.assetInfoPath"/>
<dspel:input type="hidden" value="${debug}" priority="100"
bean="${imap.formHandler.path}.loggingDebug"/>
 
loading table of contents...