From 5d9e2d19618dcf3a82c0aa97e07a2b98b38a701c Mon Sep 17 00:00:00 2001 From: Joan Date: Tue, 4 Jul 2023 14:13:29 +0200 Subject: [PATCH] Added more verbosity to logs --- wallamanta/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallamanta/worker.py b/wallamanta/worker.py index d1a26f0..8368591 100644 --- a/wallamanta/worker.py +++ b/wallamanta/worker.py @@ -128,7 +128,7 @@ class Worker: for articles in articles_list: for article in articles: if not article['id'] in list: - logging.info(f"Found article {article['title']}") + logging.info(f"Found article {article['title']} for {walladb.get_user(product['telegram_user_id'])} ({product['telegram_user_id']})") try: if not self.has_excluded_words(article['title'].lower(), article['description'].lower(), product['title_description_exclude']) and not self.is_title_key_word_excluded(article['title'].lower(), product['title_exclude']): try: