Skip to content

Commit

Permalink
chore: change log to info when total records mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
anaselmhamdi committed Jan 9, 2025
1 parent 8966597 commit 9438223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bizon/source/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def update_state(self, pagination_dict: dict, nb_records_fetched: int):
self.job_status = JobStatus.SUCCEEDED

if self.total_records is not None and self.rows_fetched != self.total_records:
logger.warning(
logger.info(
(
f"Source: {self.source_full_name} - Iteration {self.iteration} - "
f"Total records fetched: {self.rows_fetched} "
Expand Down

0 comments on commit 9438223

Please sign in to comment.