Hello,

You had enabled logging on your test master and we display in the build 
logs the logs of the plugin, this is why you had these messages on your 
test masters.

You can disable globally publishers through the Global Tools Configuration 
screen.

The message may not be intuitive but here is what happened:

   - "Use pipeline defined publisher for 'Findbugs Publisher'" --> the 
   config of the findbugs publisher is defined in the pipeline, in 
   "withMaven(options:[findbugsPublisher(...)]"
   - "Skip 'Findbugs Publisher' disabled by configuration" --> the Findbugs 
   Publisher is disabled
   - "pipelineGraphPublisher - triggerDownstreamPipelines" --> even if you 
   disable the "pipelineGraphPublisher" by configuration, we have a listener 
   of the pipeline build completion to decide if we trigger downstream 
   pipelines. We need to wait for the completion of the build because the 
   downstream pipeline trigger strategy is based on the result of the upstream 
   build, you probably don't want to trigger downstream pipelines if your 
   build failed.

Stephen Connolly mentioned another use case:disabling all the 
publishers unless they are explicitly enabled in the pipeline 
("withMaven(options:[myPublisher(enabled: 
true])"). James Nord had created a while ago the RFE JENKINS-46785 add a 
way to disable all reporters (and selectively enable a few) 
<https://issues.jenkins-ci.org/browse/JENKINS-46785>.
If have started to work on it with 
https://github.com/jenkinsci/pipeline-maven-plugin/pull/116 and James 
validated the user Experience. I'll provide details later.

Did this clarify your messages?

Cyrille 



On Thursday, December 14, 2017 at 11:46:07 AM UTC+1, nco...@lbisa.com wrote:
>
> Just noticed that PROD has a different logger. It is using:
> org.jenkinsci.plugins.pipeline.maven.WithMavenStepExecution
>
> and test was using:
> org.jenkinsci.plugins.pipeline.maven
>
> Both were set to log level ALL.
> After set test instance to use the same logger, the output are similar in 
> both instances.
>
> Additionally, tested remove the logger from test and seems that the 
> default console output is the same as:
> org.jenkinsci.plugins.pipeline.maven.WithMavenStepExecution
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/1098af7b-6f6e-44ea-9d34-f541ecd856f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to