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_r390428351
##########
File path:
fineract-provider/src/main/java/org/apache/fineract/infrastructure/campaigns/sms/service/SmsCampaignWritePlatformServiceJpaImpl.java
##########
@@ -656,7 +656,8 @@ public void storeTemplateMessageIntoSmsOutBoundTable()
throws JobExecutionExcept
LocalDateTime tenantDateNow = tenantDateTime();
LocalDateTime nextTriggerDate =
smsCampaign.getNextTriggerDate();
- logger.info("tenant time " + tenantDateNow.toString() + "
trigger time " + nextTriggerDate.toString() +
JobName.UPDATE_SMS_OUTBOUND_WITH_CAMPAIGN_MESSAGE.name());
+ logger.info("tenant time {} trigger time {} {}",
+ new Object[] { tenantDateNow.toString(),
nextTriggerDate.toString(),
JobName.UPDATE_SMS_OUTBOUND_WITH_CAMPAIGN_MESSAGE.name() });
Review comment:
```suggestion
new Object[] { tenantDateNow, nextTriggerDate,
JobName.UPDATE_SMS_OUTBOUND_WITH_CAMPAIGN_MESSAGE.name() });
```
----------------------------------------------------------------
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