Jenkins Pipeline logs braces from ansiColor plugin?

那年仲夏 提交于 2019-12-02 13:16:46

We use the Simple Theme plugin to hide or surpress the pipeline annotated lines. With this you can use custom .css code to hide or don't display the pipeline annotated lines. You can do this if you have or installed this plugin via 'Jenkins > Manage Jenkins > Configure System' and navigate to 'Theme' and add Extra CSS.

For example this should not display the pipeline annotated lines:

.pipeline-annotated {
   display: none;
}

or just hide it (this will sometimes be more readable):

.pipeline-annotated {
   visibility: hidden;
}

See also this for more info.

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