Skip to content

Commit

Permalink
Add newline to debug logging statement (#11)
Browse files Browse the repository at this point in the history
There was a missing newline in the log. This commit adds the newline so
that there is the proper line breaks.
  • Loading branch information
trstringer committed May 25, 2022
1 parent 984a23b commit c4d4c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion approval.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Respond %s to continue workflow or %s to cancel.`,
)
var err error
fmt.Printf(
"Creating issue in repo %s/%s with the following content:\nTitle: %s\nApprovers: %s\nBody:\n%s",
"Creating issue in repo %s/%s with the following content:\nTitle: %s\nApprovers: %s\nBody:\n%s\n",
a.repoOwner,
a.repo,
issueTitle,
Expand Down

0 comments on commit c4d4c80

Please sign in to comment.