Where are the output from console.log stored

As already stated in the title, I’d like to know where Scriptable stores the output when using console.log(). I haven’t found any information in the documentation.

Thanks in advance,
Lars

I don’t believe console logs are saved to disk

The console is the output window in the app. Just like the console in a browser. When you log to the console you push the content to the console output window.

If you want to write to a log file for persistent logging, that would be something other than a console window and you can do that using the file manager code.

Hope that helps.