Clarity

  • 1.  Tracing Process

    Posted Dec 24, 2017 05:21 AM

    Dear All,

     

    How can I trace my process to see the 

    <j:if test="Debug=='true'">
    <g:log>ID : ${id}</g:log>
    </j:if>

     



  • 2.  Re: Tracing Process
    Best Answer

    Broadcom Employee
    Posted Dec 24, 2017 08:11 PM

    Hi Jarrar-Moh,

     

    <gel:out>*********</gel:out> statement maybe useful for your tracing the process.

    I often use  <gel:out>*********</gel:out> to debug the process.

     

    For ex,  adding the following red line in your sample code, it will tell you whether <j:if test="Debug=='true'"> is executed or not. If Debug=true, then "*** Debug true executed ***" will be out in bg-system.log

     

    <j:if test="Debug=='true'">

    <g:out>*** Debug true executed ***</g:out>
    <g:log>ID : ${id}</g:log>
    </j:if>

     

    Regards,

    Shoichi



  • 3.  Re: Tracing Process

    Posted Dec 24, 2017 11:32 PM

    Thanks Mr.Shoichi for your support.