This function sends messages from scripted elements to the INTERCONNECT output window.
| Syntax | Description |
|---|---|
| logmessage; | This function sends messages from scripted elements to the INTERCONNECT output window. It is specially useful to debug scripted elements. |
Example
Log a message when an error occurs from a system command.
try{
system(command);
}
catch(err);
logmessage("An error has occured:" + err);See Also