Reputation: 380
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
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