Unable to view logs from within starter script

Hi, I am using a starter script to work on some Supabase data. I am able to fetch the data in my script by return the same data. I have a bunch of logging.log commands in the script but I dont see the output of those commands in the console. Thank you
2 Replies
AI Support
AI Support2mo ago
Processing...
🤖 Compiling the latest insights for you. 🔄 this might take a couple of minutes... beep boop
AI Support
AI Support2mo ago
🤖 AI Response
In BuildShip, logging statements using logging.log() should appear in the workflow's cloud log window, but there are some important nuances to be aware of: - Logging only works during full workflow tests: Currently, logs generated by logging.log() will only show up when you run a test of the entire workflow, not when testing individual nodes. This is a known limitation, and BuildShip has indicated plans to support logging in individual node tests in the future. - Correct usage of logging: Ensure that you are passing the logging object as a parameter in your node's function definition. If you use console.log, it will not output to the BuildShip log panel; you must use logging.log() as described in the documentation. - Logs location: The logs should appear in the BuildShip cloud log window, not the browser's developer console. If you do not see logs after running a full workflow test, double-check your logging syntax and function parameters. - Debugging tips: To confirm your script is running, add a logging.log() statement at the very start of your node logic. If you still do not see logs, there may be an issue with how the logging object is being passed or with your workflow configuration. - Support: If your workflow is fetching data but not showing logs, and you have confirmed the above steps, consider reaching out to BuildShip support for personalized troubleshooting, as there may be workflow-specific issues. 🔗 References: 1. https://www.youtube.com/watch?v=CbRfiEeS3rk 2. https://support.buildship.com/m/1258652268597612564 3. https://support.buildship.com/m/1207015322679517215 4. https://support.buildship.com/m/1231412974183251998 5. https://support.buildship.com/m/1225828086050717706
BuildShip AI Support

Did you find this page helpful?