Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubom committed Jul 24, 2024
1 parent 9cf1722 commit f71f87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iata_code_fetcher/fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def process_and_save_data(code_type: CodeType) -> None:
except RequestException as e:
logging.error("For %s: %s", code, e)
except ValueError as e:
logging.warn("For %s, %s", code, e)
logging.info("For %s, %s", code, e)

processed += 1
if processed % REPORT_FREQUENCY == 0:
Expand Down

0 comments on commit f71f87f

Please sign in to comment.