adamsaghy commented on code in PR #4783:
URL: https://github.com/apache/fineract/pull/4783#discussion_r2155235253


##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/account/service/AccountTransfersWritePlatformServiceImpl.java:
##########
@@ -350,7 +384,7 @@ public Long transferFunds(final AccountTransferDTO 
accountTransferDTO) {
             
this.accountTransferDetailRepository.saveAndFlush(accountTransferDetails);
             transferTransactionId = accountTransferDetails.getId();
         } else if 
(isSavingsToSavingsAccountTransfer(accountTransferDTO.getFromAccountType(), 
accountTransferDTO.getToAccountType())) {
-
+            log.info("Savings to Savings {}", 
accountTransferDTO.getFromAccountId());

Review Comment:
   Change log level to DEBUG please!



##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/account/service/AccountTransfersWritePlatformServiceImpl.java:
##########
@@ -374,6 +408,8 @@ public Long transferFunds(final AccountTransferDTO 
accountTransferDTO) {
                 this.savingsAccountAssembler.setHelpers(toSavingsAccount);
             }
 
+            log.info("Transfer funds from {} to {}", 
fromSavingsAccount.getId(), toSavingsAccount.getId());

Review Comment:
   Sa



-- 
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]

Reply via email to