change some logging levels

This commit is contained in:
2026-02-11 16:59:39 +05:30
parent a9564cbbb9
commit 51ed953830
2 changed files with 4 additions and 6 deletions

View File

@@ -74,7 +74,6 @@ class FileProcessor:
# Step 3: Parse file
parser = ACHParser(local_path)
transactions, metadata, summary = parser.parse()
logger.info(f"Parsed {len(transactions)} transactions from {filename}")
if not transactions:
logger.warning(f"No transactions found in {filename}")
@@ -91,7 +90,6 @@ class FileProcessor:
# Step 4: Map transactions
mapped_records = DataMapper.map_transactions(transactions, bankcode)
logger.info(f"Mapped {len(mapped_records)} transactions")
# Step 5: Insert to database (with account validation)
inserted_count, skipped_count = self.repository.bulk_insert_transactions(mapped_records)