You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
string(string): A string containing the message to be output.
value(float): A float value to be output.
Example
()warning("This is a warning message");
()info("This is an informative message");
()debug("This is a debug message");
()warning(3.14159);
()info(42.0);
()debug(2.71828);
This example code shows how to call the warning, info, and debug functions with either a string or float value.