Skip to content

Commit

Permalink
Fix #9100 Change console mode message to debug
Browse files Browse the repository at this point in the history
[NO TESTS NEEDED]

Signed-off-by: Gerard Braad <[email protected]>
  • Loading branch information
gbraad committed Jan 27, 2021
1 parent 6ba8819 commit e9f4fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/terminal/console_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func setConsoleMode(handle windows.Handle, flags uint32) error {
if err := windows.SetConsoleMode(handle, mode|flags); err != nil {
// In similar code, it is not considered an error if we cannot set the
// console mode. Following same line of thinking here.
logrus.WithError(err).Error("Failed to set console mode for cli")
logrus.WithError(err).Debug("Failed to set console mode for cli")
}

return nil
Expand Down

0 comments on commit e9f4fb9

Please sign in to comment.