change some logging levels
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user