diff options
Diffstat (limited to 'jfr_playoff/remote.py')
-rw-r--r-- | jfr_playoff/remote.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/jfr_playoff/remote.py b/jfr_playoff/remote.py index b687740..2deb7ce 100644 --- a/jfr_playoff/remote.py +++ b/jfr_playoff/remote.py @@ -3,6 +3,7 @@ import re import requests from bs4 import BeautifulSoup as bs +from jfr_playoff.logger import PlayoffLogger class RemoteUrl: @@ -10,6 +11,8 @@ class RemoteUrl: @classmethod def fetch(cls, url): + PlayoffLogger.get('remote').info( + 'fetching content for: %s', url) if url not in cls.url_cache: request = requests.get(url) encoding_match = re.search( |