consoleError
Key
Type
Description
Example Action Object
{
"action": "consoleError",
"options": {
"message": "An unexpected condition occurred in my custom logic."
}
}Last updated
Was this helpful?
The consoleError action logs a custom message to the browser's error console. This can be useful for debugging application logic or signaling specific error conditions during development.
action
string
"consoleError"
options.message
string
The message to log to the error console.
{
"action": "consoleError",
"options": {
"message": "An unexpected condition occurred in my custom logic."
}
}This action is primarily intended for development and debugging purposes.
Last updated
Was this helpful?
Was this helpful?