afranken / jmeter-analysis-maven-plugin

Plugin that parses JMeter result files and computes performance indicators such as average request duration
58 stars 40 forks source link

Optimize logging / fix logging #3

Closed afranken closed 11 years ago

afranken commented 12 years ago

Mark wrote:

From the logging point of view, it would seem that SLF4J is overriding all other logging the first time the code goes into JMeterResultParser and not handing control back to anything. So I see the following:

· Plugin starts to analyse results

· I see the first file get picked up

· I then the Summary of the first file analysed (produced by SLF4J)

· I then see no additional logging, nothing is printed out to screen until control of the cursor is returned.

I’m a bit stumped at the moment, the easy fix would seem to be just pull SLF4J out and use default maven logging since it’s only used in one class. I’m guessing you probably know more about SLF4J than me though so I’m just leaving it as it is for now.

see https://groups.google.com/d/topic/maven-jmeter-plugin-devs/5Uo8Uv2jn1M/discussion

afranken commented 11 years ago

used SLF4J out of habit, I'll move to Maven Logging since this really doesn't make much sense...