Description
Puts the 'message' on the console of a runner gadget. The use of it has no effect in other places besides for the runner.
Parameters
Return Type
String
Return value has no meaning and should be ignored.
Examples
Example 1
runnerLog("Hello " + userFullName(currentUsername()) + ". How are you today?");
Returns: Hello John Smith. How are you today?
Example 2
Using HTML as output.
runnerLog("<font color='red'>This is a red text!</font>", true);
This is a red text! (text will be red)