Hi,
I want to extend Browser.Log function of default Browser plugin so it also logs conditions.
Example Setup:
Conditions:
System: On start of layout
System: 0 > 5
Event:
BrowserExtended: Log With Conditions | ("Hello")
Code:
logWithConditions(log)
{
var conditions = xxxx;
console.log("Conditions: " + conditions + " Logged:" + log);
}
How to receive conditions? Is it possible to receive conditions?