File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
tools/flakeguard/jirautils Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments