This topic was automatically generated from Slack. You can find the original thread here.
Hey folks, I’m running into a weird issue with my workflows and hoping someone can point me in the right direction.
In my workflow (Weekly Events Updated V2) — and even in a super simple test workflow with just one Code step — the Exports and Logs tabs in the Runs view are always greyed out. I also don’t see the return value tree. The only thing I get is the Details tab (timestamp/duration/name).
What I expected:
• console.log() should show up under Logs
• $.export() should show up under Exports
• return { … } should show up as a return value tree
What’s actually happening: none of those appear.
Stuff I’ve already tried:
• Cleared cache and cookies
• Tested in both Safari and Chrome with no extensions
• Tried with different workflows (my main one and a brand new test)
• Same issue every time
Here’s the minimal test code I used (still no Logs/Exports showing):
export default async (event, steps, { $ }) => {
console.log("LOG_MARKER", { a: 1 });
$.export("ping", "pong");
return { answer: 42, now: Date.now() };
}
Has anyone seen this before? Is there something I might be missing, or is this something support needs to check on their side?