I am new to OFBiz
and I want to keep log of FTL files after it is rendered, to be more elaborate i want to know what file is returned from FTL engine in OFBiz. Example:
<#if sessionAttributes.autoName?has_content>
<h2> ${sessionAttributes.autoName?html}
<a href="<@ofbizUrl>autoLogout</@ofbizUrl>" class="linktext">Logout</a></h2>
<#else/>
${uiLabelMap.CommonWelcome}!
</#if> i want to know what will this code return .
I have no idea how to do it and i didn't try any thing yet.