Skip to content

Commit 2dfaf29

Browse files
committed
remove debug logs
1 parent 3863c9f commit 2dfaf29

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tools/flakeguard/jirautils/jira.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ func CreateTicketInJira(
5050
// Set Assignee only if assigneeId is provided
5151
if assigneeId != "" {
5252
fields.Assignee = &jira.User{AccountID: assigneeId}
53-
} else {
54-
log.Debug().Msg("No assignee ID provided, ticket will be unassigned.")
5553
}
5654

5755
// Find and Set Priority
@@ -70,7 +68,6 @@ func CreateTicketInJira(
7068
if p.Name == priorityName {
7169
fields.Priority = &p // Set the Priority field with the found object
7270
foundPriority = true
73-
log.Debug().Msgf("Found and setting priority: %s (ID: %s)", p.Name, p.ID)
7471
break
7572
}
7673
}
@@ -79,8 +76,6 @@ func CreateTicketInJira(
7976
log.Warn().Msgf("Priority '%s' not found in Jira instance. Creating ticket without this priority.", priorityName)
8077
}
8178
}
82-
} else {
83-
log.Debug().Msg("No priority name provided, skipping priority setting.")
8479
}
8580

8681
// Create the issue

0 commit comments

Comments
 (0)