From a2816bc57cfa8b94c89123c06d0a4832b39e0ee1 Mon Sep 17 00:00:00 2001 From: Rafael Elter Date: Fri, 24 Nov 2023 16:40:16 -0300 Subject: [PATCH] fix: print -> log --- src/b3od/scrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/b3od/scrapper.py b/src/b3od/scrapper.py index 909c80d..b6148c7 100644 --- a/src/b3od/scrapper.py +++ b/src/b3od/scrapper.py @@ -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):