Logs an informational message to the script output panel.
The message to log.
const value = 42;Console.Log("step 1 complete");Console.Log("value: " + value); Copy
const value = 42;Console.Log("step 1 complete");Console.Log("value: " + value);
Logs a warning message to the script output panel.
The warning text.
const attempt = 2;Console.Warn("retrying: " + attempt); Copy
const attempt = 2;Console.Warn("retrying: " + attempt);
Logs an error message to the script output panel.
The error text.
Console.Error("window not found"); Copy
Console.Error("window not found");
Logs an informational message to the script output panel.