Warm tip: This article is reproduced from serverfault.com, please click

JMeter listener log.info messages do not appear in Jenkins

发布于 2017-12-08 19:03:51

I wrote a JSR223 Listener that has log.info messages. Why do these log.info messages not appear in the Jenkins Console Output? I have BeanShell Assertions with log.info messages that will appear in the Jenkins Console Output. I'm just curious why Listener log.info messages won't show

Questioner
joCha
Viewed
0
user7294900 2017-12-09 16:32:47

log is writing to jmeter log which isn't display in Jenkins

You can write to output strem using OUT as:

 OUT.println("Hello Jenkins");