When I run something like `srun -n 10 echo HELLO', I get HELLO returned to my console/stdout 10x. When I submit this command as a script to the /jobs/submit route, I get success/200, but I cannot determine how to get the console output of HELLO 10x in any form. It's not in my stdout log for that job even though I can verify that the job ran successfully.
You're saying there's no output in the StdOut or StdErr files listed by `scontrol show job JOBID` for the job?
If instead it's that you're wondering why it only contains one "HELLO" instead instead of ten, then my question would be whether you're doing an `srun echo HELLO` within the job script or if it ends up being just a single echo in the .batch step.