forked from platypush/platypush
Removed title from logging trace in RSS backend
This commit is contained in:
parent
276ee8fee9
commit
4c2302a534
1 changed files with 1 additions and 3 deletions
|
@ -132,9 +132,7 @@ class RssUpdates(HttpRequest):
|
|||
|
||||
if latest_update is None \
|
||||
or entry_timestamp > latest_update:
|
||||
self.logger.info('Processed new item from RSS feed <{}>: "{}"'
|
||||
.format(self.url, entry.title))
|
||||
|
||||
self.logger.info('Processed new item from RSS feed <{}>'.format(self.url))
|
||||
entry.summary = entry.summary if hasattr(entry, 'summary') else None
|
||||
|
||||
if self.mercury_api_key:
|
||||
|
|
Loading…
Reference in a new issue