I wrote a script that sets a parameter, reads another parameter and prints (using :put) it to the terminal. When I run the script from the terminal (>system script run ) then everything works fine. However, when I run it from the scheduler or when I press the “Run Script” button on the script editor, the script runs (the parameter is being set) but nothing is printed on the terminal. Any suggestions would be appreciated.
the scheduler is running it in the background, with no terminal. You can try using ‘:log info’ instead of :put to see it in the log.
Thank you changeip!