From a7e6992a13a7b96f1b80841e19ecb00185be0e56 Mon Sep 17 00:00:00 2001 From: Eitan Joffe Date: Wed, 13 Oct 2021 12:14:47 -0700 Subject: [PATCH] remove leftover debug statements commit-id:86fbc47c --- spr/spr.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spr/spr.go b/spr/spr.go index 7235f63..08b1a98 100644 --- a/spr/spr.go +++ b/spr/spr.go @@ -96,10 +96,6 @@ func (sd *stackediff) UpdatePullRequests(ctx context.Context) { // first - rebase all pull requests to master // then - update all pull requests for _, pr := range githubInfo.PullRequests { - fmt.Printf("DEBUG 1: UpdatePullReqeust info:%v\n", githubInfo) - fmt.Printf("DEBUG 1: UpdatePullReqeust pr:%v\n", pr) - fmt.Printf("DEBUG 1: UpdatePullReqeust c:%v\n", pr.Commit) - fmt.Printf("DEBUG 1: UpdatePullReqeust prevcommit:%v\n", nil) sd.github.UpdatePullRequest(ctx, githubInfo, pr, pr.Commit, nil) } sd.profiletimer.Step("UpdatePullRequests::ReparentPullRequestsToMaster") @@ -126,10 +122,6 @@ func (sd *stackediff) UpdatePullRequests(ctx context.Context) { if commitIndex > 0 { prevCommit = &localCommits[commitIndex-1] } - fmt.Printf("DEBUG 2: UpdatePullReqeust info:%v\n", githubInfo) - fmt.Printf("DEBUG 2: UpdatePullReqeust pr:%v\n", pr) - fmt.Printf("DEBUG 2: UpdatePullReqeust c:%v\n", c) - fmt.Printf("DEBUG 2: UpdatePullReqeust prevcommit:%v\n", prevCommit) sd.github.UpdatePullRequest(ctx, githubInfo, pr, c, prevCommit) pr.Commit = c }