Skip to content

Commit

Permalink
Merge pull request containers#9101 from gbraad/console-mode-message
Browse files Browse the repository at this point in the history
Fix containers#9100 Change console mode message to debug
  • Loading branch information
openshift-merge-robot authored Jan 27, 2021
2 parents 5d44446 + e9f4fb9 commit c3b3984
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 c3b3984

Please sign in to comment.