joCha
joCha

Reputation: 380

JMeter listener log.info messages do not appear in Jenkins

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

Upvotes: 1

Views: 193

Answers (1)

Ori Marko
Ori Marko

Reputation: 58772

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");

Upvotes: 2

Related Questions