HELP!

Console Log

This is an example of how to create a simple user script which you can use in your XpertScript.

Let us say we need to dump out information from our script into a typical console log. This may be especially important if you are using the Viabl Platform's silent engine.

First we create a JavaScript function, please see the example below:

Then we must insert a parameter name and a type. Don't forget to press the plus button to the right.

Then we are going to fill out our function with a simple line of code. console.log(TextToDisplay);

You can now use your consoleLog function within your XpertScript, this will allow us to use this particular function within our XpertScript as if we were logging to the console in JavaScript.

On This Page