Skip to content

Commit 0bc797d

Browse files
committed
remove debug logs
1 parent a4f6228 commit 0bc797d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ee/cli/pkg/drift/github_issue.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,12 @@ func (ghi GithubIssueNotification) Send(projectName string, plan string) error {
2626
return item.Title == title
2727
})
2828
if exists {
29-
log.Printf("Issue found: %v", theIssue)
3029
_, err := (*ghi.GithubService).UpdateIssue(theIssue.ID, theIssue.Title, message)
3130
if err != nil {
3231
log.Printf("error while updating issue: %v", err)
3332
}
3433
return err
3534
} else {
36-
log.Printf("Issue NOT found: %v", theIssue)
3735
_, err := (*ghi.GithubService).PublishIssue(title, message)
3836
if err != nil {
3937
log.Printf("error while publishing issue: %v", err)

0 commit comments

Comments
 (0)