Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to disable [Pipeline] messages in Jenkins pipeline console output?

I am working on some particular Jenkins pipeline which has many steps included - most of which are written in Groovy - because of that I am seeing many [Pipeline] messages which are totally unimportant and unnecessary for me. Is it possible to suppress those?

I am asking for something similiar as in related question 2. but I would like to supress all [Pipeline] messages - which includes messages like:

[Pipeline] node
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Test)
[Pipeline] bat
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline

And more...

Related questions:

  1. How to disable command output in jenkins pipeline build logs
  2. How to suppress source script lines echo in jenkins pipeline console output?
like image 557
vumi Avatar asked May 23 '17 12:05

vumi


1 Answers

I've also been looking for a way to reduce the amount of output in my pipeline logs. Until now, the only results I have found focus on putting set +x as the first line of a sh step, but that doesn't really do anything for the pipeline step echoes. I would really love to see a solution that did not rely on editing CSS, but rather on the pipeline code; maybe in the options declarative...

like image 89
Dan Fitzpatrick Avatar answered Sep 21 '22 08:09

Dan Fitzpatrick