We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e075096 commit b5b17b2Copy full SHA for b5b17b2
src/main/java/org/mifos/processor/bulk/camel/routes/SplittingRoute.java
@@ -87,7 +87,7 @@ public void configure() throws Exception {
87
List<Transaction> transactionsForPayee = transactionList.stream()
88
.filter(transaction -> payeeId.equals(transaction.getPayeeDfspId())).collect(Collectors.toList());
89
logger.info(objectMapper.writeValueAsString(transactionsForPayee));
90
- logger.info(objectMapper.writeValueAsString(distinctPayeeIds) +" - "+ payeeId);
+ logger.info(objectMapper.writeValueAsString(distinctPayeeIds) + " - " + payeeId);
91
transactionsByPayeeId.put(payeeId, transactionsForPayee);
92
String subBatchId = UUID.randomUUID().toString();
93
subBatchIdList.add(subBatchId);
0 commit comments