The log built-in function on the Mez namespace writes a log message with level INFO. The logging entry is saved in the __logging_log__ table of your application instance's schema. It will also be available via the Logging Service.
Mez:log("Hello, World");
Displaying Pop-ups
Mez:alert(s), Mez:alertWarn(s), and Mez:alertError(s) all displays an alert dialog in the UI with the given message. They differ in text color (blue, orange, and red).
Add Comment