TCA.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: TCA.log

TCA.outputMessage(text);

Arguments

text. (string) The notification message.

Return value

A promise that will be fulfilled with no arguments.

Example

Copy code
TCA.outputMessage("My output message").then(function(){
  TCA.done();
}).catch(function (error) {
  TCA.doneWithError(error);
});