1

I have a JSR223 sampler that uses Tiny Radius but when I run the script, jmeter.log fills up with info messages from org.tinyradius.util.RadiusClient and packet information.

Is there something I can add to my jmeter.properties to stop this, or at least drop the logging level to error?

MeanwhileInHell
  • 6,780
  • 17
  • 57
  • 106

1 Answers1

3

PRE v3.2

in bin/jmeter.properties:

log_level.[package_name].[classname]=[PRIORITY_LEVEL]

with classname being optional

So:

log_level.org.tinyradius.util=ERROR

3.2 onwards

In bin/log4j2.xml:

<Logger name="org.tinyradius.util" level="error" />
MeanwhileInHell
  • 6,780
  • 17
  • 57
  • 106