How can I see FOO console logs for a live function?

Is there a way to see the console logs of a function on objects from the frontend where this function is triggered? Ie in browser inspect console tab?

Reason I’m asking is that my function in the live preview has a timeout limit of 60s, while the published function has the limit of 300s. We’d like to evaluate what’s happening outside of the 60s mark, which currently we don’t see in live preview.

Through most applications, execution requests will not return any debug logs.

If you execute the published Function in the functions helper in Code Repositories (the tab next to Live Preview), that will return debug logs and also respect any timeout overrides.

1 Like

Amazing, thanks Jed!