-
-
Notifications
You must be signed in to change notification settings - Fork 18
show_debug_message
CryoEagle edited this page Jan 6, 2019
·
2 revisions
Show debug message in debug output
show_debug_message(str)
Argument | Description |
---|---|
string str |
message to debug output |
Returns: string
This function will show message in debug output when is called, so it's perfect for debugging numbers or for finding bug.
show_debug_message("Hello world from debug output !");
The above code will show message in debug output „Hello world from debug output !“.
Back to Debug