Hi guys Here's what I do: it's not really debugging, but a general suggestion on how to more easily turn on or off logging messages.1) In the beginning of the GEL Script, I set this variable, to control my debugging level: 1 2) If there will be other GEL Scripts in the same process, I usually persist that variable: 3) Througout the GEL I create messages that show up or not depending on the values of that control variable. A few examples:These messages will only show if DebugLevel is at least 1
>Studio Project: ${vStudioProjectID}"/>
>Persisted XOG URL : ${XOGURL}"/>
>Persisted LOG Folder: ${XOGlogFolder}"/>
>Persisted SessionID: ${sessionID}"/>
>Persisted DebugLevel: ${DebugLevel}"/>
This message will only show if DebugLevel is at least 2
Using this method you can actually create several messages in your script (with different levels of debugging) and instead of removing them once they are no longer necessary, you just set a lower value in "DebugLevel". That way you preserve your messages for when you need to debug again. Hopethis helps you!Alex