aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bootstrap.py2
-rw-r--r--src/crawler/default_crawler.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap.py b/src/bootstrap.py
index 8e337c4a..8e5413e0 100644
--- a/src/bootstrap.py
+++ b/src/bootstrap.py
@@ -14,7 +14,7 @@ def set_logging(log_path=None, log_level=logging.INFO, modules=(),
log_format='%(asctime)s %(levelname)s %(message)s'):
if not modules:
modules = ('root', 'bootstrap', 'runserver',
- 'web', 'crawler.classic_crawler', 'manager', 'plugins')
+ 'web', 'crawler.default_crawler', 'manager', 'plugins')
if conf.ON_HEROKU:
log_format = '%(levelname)s %(message)s'
if log_path:
diff --git a/src/crawler/default_crawler.py b/src/crawler/default_crawler.py
index e5df3c04..38810fc0 100644
--- a/src/crawler/default_crawler.py
+++ b/src/crawler/default_crawler.py
@@ -59,6 +59,7 @@ else:
async def get(*args, **kwargs):
#kwargs["connector"] = aiohttp.TCPConnector(verify_ssl=False)
try:
+ logger.info('Retrieving feed {}'.format(args[0]))
data = feedparser.parse(args[0])
return data
except Exception as e:
bgstack15