From b35cffe2384a8e6461c39e11494d6e84dd20d6a1 Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Wed, 29 Jan 2025 16:44:07 -0600 Subject: [PATCH] add logging statement --- src/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api.py b/src/api.py index d8fc9a0..5e22c40 100644 --- a/src/api.py +++ b/src/api.py @@ -320,6 +320,7 @@ def provision_member(): response_object["inserted_at"] = current_timestamp # call Core API to send the welcome email/pkpass to the member. provision_membership_pkpass(email) + logger.info("Sent welcome email with pkpass.") return Response( status_code=201, content_type=content_types.APPLICATION_JSON,