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

☆樱花仙子☆ 提交于 2019-11-30 19:44:57

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!