Log response from Mercury API

This commit is contained in:
Fabio Manganiello 2019-04-13 08:06:40 +00:00
parent 611e5f2160
commit 1ea6041dfa
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ class HttpWebpagePlugin(Plugin):
if not response or not response.ok:
raise RuntimeError("Unable to parse content for {}: {}".format(url, response.reason))
self.logger.info('Got response from Mercury API: {}'.format(response))
title = response.json().get('title', 'No_title_{}'.format(int(time.time())))
content = '<body style="{body_style}"><h1>{title}</h1>{content}</body>'.\
format(title=title, content=response.json()['content'],