Jenkins : Console Log Text Replacer Plugin

Plugin Information

No information for the plugin 'console-log-text-replacer' is available. It may have been removed from distribution.

Allow users to replace text in the console log of a build

 Features

  • Allow replacing text before it is printed to the console to different text or empty strings

Requirements

Configuration

  • You must create a configuration file (a text JSON file) on your master jenkins
  • The format of the file must be of the following

{

  "entries": [

    {

        "text": "hello_world",

        "replaceto": "hola_mundo"

    },

    {

       "text": "blue_sky",

       "replaceto": ""

    }

  ]

}