Skip to content

Commit

Permalink
fix: print -> log
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Elter committed Nov 24, 2023
1 parent c7bfa7f commit a2816bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/b3od/scrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ def download(

if service == "WebConsolidated":
if is_sequence(query_date):
print("Downloading many")
logger.info("Downloading many")
return self.__download_web_consolidated_many(table, query_date)
print("Downloading one")
logger.info("Downloading one")
return self.__download_web_consolidated(table, query_date)
if service == "PositionLimits":
if is_sequence(query_date):
Expand Down

0 comments on commit a2816bc

Please sign in to comment.