From dab841af00d0245053f25a69f057812ede75e37a Mon Sep 17 00:00:00 2001 From: Somesh Koli Date: Fri, 17 Oct 2025 18:21:12 +0530 Subject: [PATCH] debug: Log properties before HTTP request Added a print statement to log properties before making an HTTP request. --- scripts/aws/phonehome.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/aws/phonehome.py b/scripts/aws/phonehome.py index 4267f37..b4a7876 100644 --- a/scripts/aws/phonehome.py +++ b/scripts/aws/phonehome.py @@ -18,6 +18,7 @@ def lambda_handler(event, context): encoded_data = json.dumps(props).encode("utf-8") url = props["url"] + print(props) try: response = http.request(