Remove logger

This commit is contained in:
CHIEFSOFT\ameye
2025-05-24 07:08:03 -04:00
parent 1cb0d88cc2
commit 20c9a5c713
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -30,6 +30,7 @@ class LoanStatusService(BaseService):
validated_data = LoanStatusService.validate_data(data, LoanStatusSchema())
customer_id = validated_data.get('customerId')
logger.info(f"Looking for customer *** {customer_id}")
customer = Customer.get_customer(customer_id)
transactionId = validated_data.get('transactionId')
account_id = validated_data.get('accountId')
-1
View File
@@ -76,7 +76,6 @@ class Customer(db.Model):
"""
Get customer by ID.
"""
logger.error(f"Looking for customer *** {customer_id}")
customer = cls.query.filter_by(id=customer_id).first()
if not customer: