Bug 52614

Summary: MailerModel.sendMail has strange way to calculate debug setting
Product: JMeter - Now in Github Reporter: Sebb <sebb>
Component: MainAssignee: JMeter issues mailing list <issues>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: 2.5.1   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   

Description Sebb 2012-02-07 01:24:02 UTC
MailerModel.sendMail has a strange way to calculate the debug setting:

        boolean debug = Boolean.valueOf(host).booleanValue();

i.e. it will set debug true iff host.equalsIgnoreCase("true").

This code seems to have been there since the beginning of SVN history.

It should either be removed, or be replaced with something more useful.
Comment 1 Sebb 2012-02-07 11:49:18 UTC
A simple solution would be to enable debug for the Test message and not otherwise - thoughts?
Comment 2 Sebb 2012-02-09 01:13:10 UTC
Changed to enable debug for Test message only:

URL: http://svn.apache.org/viewvc?rev=1242199&view=rev
Log:
Bug 52614 - MailerModel.sendMail has strange way to calculate debug setting

Modified:
   jmeter/trunk/src/components/org/apache/jmeter/reporters/MailerModel.java
   jmeter/trunk/xdocs/changes.xml
Comment 3 The ASF infrastructure team 2022-09-24 20:37:49 UTC
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/2728