From e2a4a46e999dfc5bac4d6963c3356caa01e14372 Mon Sep 17 00:00:00 2001 From: Sayak Paul Date: Thu, 27 Jun 2024 09:49:15 +0530 Subject: [PATCH] [Release notification] add some info when there is an error. (#8718) 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 3e433281ff..a67dd8bd06 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.")