From 803f816a792d753a8299bb88010a2457b7ec1610 Mon Sep 17 00:00:00 2001 From: sayakpaul Date: Thu, 27 Jun 2024 09:33:53 +0530 Subject: [PATCH] add some info when there is an error. --- utils/notify_slack_about_release.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/notify_slack_about_release.py b/utils/notify_slack_about_release.py index 3e433281ff65..a67dd8bd0685 100644 --- a/utils/notify_slack_about_release.py +++ b/utils/notify_slack_about_release.py @@ -73,6 +73,7 @@ def main(): if latest_version and release_info and latest_version == parsed_version: notify_slack(SLACK_WEBHOOK_URL, LIBRARY_NAME, latest_version, release_info) else: + print(f"{latest_version=}, {release_info=}, {parsed_version=}") raise ValueError("There were some problems.")