I have some JMeter script with BeanShell Sampler:
After run we can see BeanShell Sampler log in 'summary.csv':
How can I disable writing of BeanShell Sampler log into 'summary.csv'?
Just add at end of sampler:
SampleResult.setIgnore();
See:
Note that for performance reasons, it is much better to use JSR223 Sampler and Groovy instead of Beanshell Sampler, see:
If you're looking to learn jmeter correctly, this book will help you.