From 4234e1ed210e66af9fd965e31e1d40cdb76f0514 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Mon, 17 Aug 2026 17:06:01 +0200 Subject: [PATCH] Debug --- cloud/APIs/twilio.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloud/APIs/twilio.py b/cloud/APIs/twilio.py index 33240b8..3df7ef9 100644 --- a/cloud/APIs/twilio.py +++ b/cloud/APIs/twilio.py @@ -8,6 +8,8 @@ def send_alert_sms(to_phone: str, room_title: str, room_link: str = None, client account_sid = os.environ.get("TWILIO_SID") auth_token = os.environ.get("TWILIO_AUTH_TOKEN") from_phone = os.environ.get("TWILIO_PHONE_NUMBER") # Requires your Twilio sender phone number + print(account_sid) + print(auth_token) if not account_sid or not auth_token or not from_phone: print("Twilio environment variables (TWILIO_SID, TWILIO_ACCOUNT_SECRET, TWILIO_PHONE_NUMBER) missing.")