TC.outputMessage
Logs a Standard log level message as a line in the interactive/load log, and shows the message in the Controller Output window as a notification.
See also: TC.log
TC.outputMessage(text);
Arguments
text. (string) The notification message.
Return value
A promise that is fulfilled with undefined upon success.
Example
(async ()=>{
await TC.outputMessage("text");
})();