Skip to content

Commit

Permalink
Fix containers#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 <me@gbraad.nl>
  • Loading branch information
gbraad authored and mheon committed Feb 4, 2021
1 parent 6913e14 commit 5cfe809
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 5cfe809

Please sign in to comment.