This Beta feature logs in real-time output form your custom Actions code. This includes all console.log output and exceptions.
For example, a custom Action code such as below:
console.log("Hello world!");
Will show up within Dashboard > Monitoring > Actions Logs as
You can also use examples such as below to catch and log errors for making it easy to debug and troubleshoot your Actions.
try {
nonExistentFunction();
} catch (error) {
console.error(error);
// Expected output: ReferenceError: nonExistentFunction is not defined
// (Note: the exact output may be browser-dependent)
}
These logs are not stored and are only available within the dashboard when you are logged in and are on the Dashboard > Monitoring > Actions Logs tab within the browser. These logs are designed to help you troubleshoot as you write or modify your custom Actions code.
Fetched April 14, 2026
This feature gives developers real-time output from Action, Custom Database Scripts, and Custom Social Connections code when executing cons…
This feature gives developers real-time output from Action, Custom Database Scripts, and Custom Social Connections code when executing cons…