From af63bb97c0d7a7d0cf2026ca47f5c6b687419e11 Mon Sep 17 00:00:00 2001 From: Hoffelhas Date: Mon, 9 Jan 2023 21:45:08 +0100 Subject: [PATCH] Minor addition of logging --- autodoist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autodoist.py b/autodoist.py index 285f5df..791bd93 100644 --- a/autodoist.py +++ b/autodoist.py @@ -767,6 +767,7 @@ def run_recurring_lists_logic(args, api,connection, task, task_items, task_items # Update due-date to today api.update_task(task_id=task.id, due_date=today_str) #TODO: Apparently this breaks the reccuring string... + logging.info("Update date on task: '%s'" % (task.content)) # Save the new date for reference us db_update_value(connection, task, 'due_date', task.due.date)