Go to documentation repository
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:
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); }