SampathKumarAmex commented on pull request #689:
URL: https://github.com/apache/jmeter/pull/689#issuecomment-1004947549
> I don't think we need to check the log messages for correctness in unit
tests.
OK, that was proposal for the next PR.
**Change 1:-**
Actually, this PR addresses the unnecessary concatenation `+` present in the
log statement.
**Before change:-**
```
log.debug("++++++++ Construct {}" + this);
```
**After change:-**
```
log.debug("++++++++ Construct {}", this);
```
**Change 2:-**
The second minor change is to move the String declaration to inline to fix
the IDE warning.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]