Message#
Singleton with methods to display different messages to the user. More...
import Script
Methods#
| Name | |
|---|---|
| debug(string text) | |
| error(string text) | |
| log(string text) | |
| warning(string text) |
Detailed Description#
The message property in QML can be used to display different messages to the user, via logs.
Message.log("Hello World!")
Method Documentation#
debug(string text)#
Shows the message text as a debug in the log.
error(string text)#
Shows the message text as an error in the log.
log(string text)#
Shows the message text as a log in the log.
warning(string text)#
Shows the message text as a warning in the log.