vorburger commented on a change in pull request #716: FINERACT-696 - add
spotbug bug-pattern plugin
URL: https://github.com/apache/fineract/pull/716#discussion_r390427800
##########
File path:
fineract-provider/src/main/java/org/apache/fineract/infrastructure/campaigns/email/service/EmailCampaignWritePlatformCommandHandlerImpl.java
##########
@@ -293,7 +293,7 @@ public void storeTemplateMessageIntoEmailOutBoundTable()
throws JobExecutionExce
LocalDateTime tenantDateNow = tenantDateTime();
LocalDateTime nextTriggerDate =
emailCampaignData.getNextTriggerDate().toLocalDateTime();
- logger.info("tenant time " + tenantDateNow.toString() + "
trigger time " + nextTriggerDate.toString());
+ logger.info("tenant time {} trigger time {}",
tenantDateNow.toString(), nextTriggerDate.toString());
Review comment:
```suggestion
logger.info("tenant time {} trigger time {}", tenantDateNow,
nextTriggerDate);
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services