Go to documentation repository
The DebugLogString method outputs the user messages into the debug windows of the Editor-Debugger utility.
Method call syntaxSyntax for method invocation:
| Code Block | ||
|---|---|---|
| ||
function DebugLogString(output : String) |
Method arguments:
...
...
...
...
Usage examples
Problem. Output to the debugger window all microphone events registered by the systemExample. When any event from any of the microphones is registered in the system, output it in the debug window.
| Code Block | ||
|---|---|---|
| ||
if (Event.SourceType == "OLXA_LINE")
{
var msgstr = Event.MsgToString();
DebugLogString("Event from the microphone " + msgstr);
} |
...