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

后端 未结 2 1982
有刺的猬
有刺的猬 2021-01-02 05:57

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]

相关标签:
2条回答
  • 2021-01-02 06:36

    This is a bit old but have a look at the blue ocean plugin. It totally alters the way you view pipelines and you may find that these messages are no longer an issue.

    0 讨论(0)
  • 2021-01-02 07:02

    We just fixed this following the CSS-based solution in Suppress Scripted Pipelines Output in Jenkins

    It looks like the CSS elements might have changed, since the accepted answer:

    .pipeline-annotated {
        display: none;
    }
    

    didn't work for me, I had to use the .pipeline-new-node CSS class shown in another answer.

    0 讨论(0)
提交回复
热议问题