diff --git a/wallamanta/worker.py b/wallamanta/worker.py index 4437bb6..da26da6 100644 --- a/wallamanta/worker.py +++ b/wallamanta/worker.py @@ -72,7 +72,8 @@ class Worker: articles = self.request(product['product_name'], 0, product['latitude'], product['longitude'], product['distance'], product['condition'], product['min_price'], product['max_price']) for article in articles: if not article['id'] in list: - logging.info("Found article {}".format(article['title'])) + logging.info(f"Found article {article['title']}") + logging.info(f"Description (parsed): {helpers.telegram_escape_characters(article['description'])}") try: if not self.has_excluded_words(article['title'].lower(), article['description'].lower(), product['exclude']) and not self.is_title_key_word_excluded(article['title'].lower(), product['title_keyword_exclude']): try: