From def4b81dc54f587fd361a20c76cc3c0a894dd678 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Mon, 10 Aug 2026 15:20:22 +0200 Subject: [PATCH] [stubsabot] Remove debug output Originally added in #8850 for #8778, long obsolete --- scripts/stubsabot.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/scripts/stubsabot.py b/scripts/stubsabot.py index 293a6420d09d..6e8742ff4908 100755 --- a/scripts/stubsabot.py +++ b/scripts/stubsabot.py @@ -777,18 +777,6 @@ def has_non_stubsabot_commits(branch: str) -> bool: try: # commits on origin/branch that are not on branch or are # patch equivalent to a commit on branch - print( - "[debugprint]", - subprocess.check_output( - ["git", "log", "--right-only", "--pretty=%an %s", "--cherry-pick", f"{branch}...origin/{branch}"] - ), - ) - print( - "[debugprint]", - subprocess.check_output( - ["git", "log", "--right-only", "--pretty=%an", "--cherry-pick", f"{branch}...origin/{branch}"] - ), - ) output = subprocess.check_output( ["git", "log", "--right-only", "--pretty=%an", "--cherry-pick", f"{branch}...origin/{branch}"], stderr=subprocess.DEVNULL,