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: