Skip to content

Commit

Permalink
Change log level of noisy log
Browse files Browse the repository at this point in the history
  • Loading branch information
roblaszczak committed Mar 20, 2022
1 parent 83f0a2a commit 7e03e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/confirm.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func FConfirmPromptDefaultYes(action string, stdin io.Reader, stdout io.Writer)
in, clean, err := NewRawTerminalReader(stdin)
defer clean()
if err != nil {
logrus.WithError(err).Warn("Can't read char from terminal")
logrus.WithError(err).Info("Can't read char from terminal, fallback to standard stdin reader")
msgFormat = "\nPress ENTER to %s or q and ENTER to quit "
in = bufio.NewReader(stdin)
} else {
Expand Down

0 comments on commit 7e03e6d

Please sign in to comment.