From e1c862184e88260f95abd8958a23d9a1da304374 Mon Sep 17 00:00:00 2001 From: i701 Date: Sat, 31 May 2025 19:30:28 +0500 Subject: [PATCH] Log user verification failure message in verify_user_with_person_api_task --- api/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tasks.py b/api/tasks.py index 7d737ce..6743b6e 100644 --- a/api/tasks.py +++ b/api/tasks.py @@ -170,7 +170,7 @@ def verify_user_with_person_api_task(user_id: int): Visit [SAR Link Portal](https://portal.sarlink.net) to manually verify this user. """ - + logger.info(verification_failed_message) if not PERSON_VERIFY_BASE_URL: raise ValueError( "PERSON_VERIFY_BASE_URL is not set in the environment variables."