Skip to content

Commit

Permalink
Fix print to wrong output in communication
Browse files Browse the repository at this point in the history
  • Loading branch information
denny241 committed Dec 22, 2020
1 parent da2d4ea commit 15d3a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/communication/communication.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func PrintGoodbyeMessage() {

func PrintFeedbackMessage(feedbackFormURL string) {
MessageMutex.Lock()
fmt.Println(aurora.Cyan(fmt.Sprintf("Thank you for using Loophole. Please give us your feedback via %s and help us improve our services.", feedbackFormURL)))
fmt.Fprintln(colorableOutput, aurora.Cyan(fmt.Sprintf("Thank you for using Loophole. Please give us your feedback via %s and help us improve our services.", feedbackFormURL)))
MessageMutex.Unlock()
}

Expand Down

0 comments on commit 15d3a47

Please sign in to comment.