From 997486e5fb51c1370bc4315ad38b075aa6b1dfb8 Mon Sep 17 00:00:00 2001 From: Rutger Vos Date: Sat, 31 Aug 2024 12:03:21 +0200 Subject: [PATCH] debugging posting issue --- barcode_validator/github.py | 1 + 1 file changed, 1 insertion(+) diff --git a/barcode_validator/github.py b/barcode_validator/github.py index ad30fef..fe4f56c 100644 --- a/barcode_validator/github.py +++ b/barcode_validator/github.py @@ -48,6 +48,7 @@ def post_comment(self, pr_number, comment): url = f"{self.base_url}/issues/{pr_number}/comments" data = {"body": comment} response = requests.post(url, headers=self.headers, json=data) + logging.info(response) response.raise_for_status() return response.json()