Loan data logs

This commit is contained in:
CHIEFSOFT\ameye
2025-05-30 17:58:18 -04:00
parent 240f9c3d32
commit fb28fd9bbf
+2 -2
View File
@@ -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: