Improve logging

This commit is contained in:
2020-11-02 00:13:43 +00:00
parent 0d16bec6f6
commit 4579dfce00
2 changed files with 3 additions and 4 deletions

View File

@@ -10,7 +10,6 @@ from bs4 import BeautifulSoup
from feeds import hackernews, reddit, tildes, manual
OUTLINE_API = 'https://api.outline.com/v3/parse_article'
ARCHIVE_API = 'https://archive.fo/submit/'
READ_API = 'http://127.0.0.1:33843'
INVALID_DOMAINS = ['youtube.com', 'bloomberg.com', 'wsj.com']
@@ -72,8 +71,6 @@ def get_content_type(url):
def update_story(story, is_manual=False):
res = {}
logging.info('Updating story ' + str(story['ref']))
if story['source'] == 'hackernews':
res = hackernews.story(story['ref'])
elif story['source'] == 'reddit':