Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page The SetObjectState method  The Base64Decode method Next page


The DebugLogString method outputs the user messages into the debug windows of the Editor-Debugger utility.

Syntax for method invocation:

function  DebugLogString(output : String)

Method arguments:

  1. output is a required argument. It specifies the message string that you want to output in the debug window of the Editor-Debugger utility. Possible values: String type.

Example. When any event from any of the microphones is registered in the system, output it in the debug window.

if (Event.SourceType == "OLXA_LINE")
{
  var msgstr = Event.MsgToString();
  DebugLogString("Event from the microphone " + msgstr);
}