Do you need to do this through Jenkins? If not, you can disable it directly from the console (provided that you get output on the linux console):
cat YOUR_EXAMPLE_OUTPUT.txt | grep -v '\[Pipeline\]\|\[monitor\]\|^$'
which would leave only:
Started by user john.doe@cdf.com Running on swqa-pr-prod-slave-1 in /srv/jenkins-slave/workspace/UUT Automated Regression - 1.20 ///////////////////////////////////////////////// Start Execution /////////////////////////////////////////////////
UPDATE: if you want this "live" to match your output and translate it into a string with grep buffering:
tail -f YOUR_EXAMPLE_OUTPUT.txt | grep -v '\[Pipeline\]\|\[monitor\]\|^$' --line-buffered
user3837712
source share