From fb28fd9bbfcb901a19e3e7b484b38bc921faf69f Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 30 May 2025 17:58:18 -0400 Subject: [PATCH] Loan data logs --- app/integrations/simbrella.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/integrations/simbrella.py b/app/integrations/simbrella.py index 02e5214..3875ca8 100644 --- a/app/integrations/simbrella.py +++ b/app/integrations/simbrella.py @@ -25,7 +25,7 @@ class SimbrellaClient: # Check if the transaction exists logger.info(f"Checking if transaction exists") transaction = TransactionService.get_transaction_by_transaction_id(transaction_id=data['transactionId']) - logger.info(f"Response from database: {transaction}") + logger.info(f"Loan Response From Database ** : {transaction}") # If transaction is not found if not transaction: @@ -90,7 +90,7 @@ class SimbrellaClient: # Check if the repayment exists logger.info(f"Checking if repayment exists") repayment = RepaymentService.get_repayment_by_transaction_id(transaction_id=data['transactionId']) - logger.info(f"Response from database: {repayment}") + logger.info(f"Repayment Response From Database ** : {repayment}") # If repayment is not found if not repayment: