Link Search Menu Expand Document

debugMessage

Explanation Display debug messages in Biz / Designer. Ignored except during debugging on Biz / Designer.
The abbreviation print function is also available.
Call format debugMessage (msg_1 [, msg_2 [, msg_3 ...]])
Return value None
Arguments Object msg_n Specifies the object to display.
The object is converted to a string and displayed.
To start a new line at the end of a line, specify "¥ n" at the end.
Exception None
Example of use
var d = 100;
var s = "sample";
debugMessage (d, s, "¥ n");
Related item print function