For troubleshooting jobs during both dev and production, is there a way to output comments with our own defined content (to include variables from the job) to the job log stream that outputs in the task run or scheduler? Often times, the standard output from the component does not have sufficient detail, so it would be good to be able to inject comments.
You may use additional Python/Bash Components with print/echo commands. We generally use Python components to print dynamic message(including dynamically generated variables) to job logs, which would help understanding the job flow.
Thanks @AnudeepK