containerd/vendor/github.com/sirupsen/logrus/terminal_check_windows.go
Lantao Liu bf112b3c2b Update containerd 591e52c504.
Signed-off-by: Lantao Liu <lantaol@google.com>
2019-04-05 11:39:34 -07:00

21 lines
297 B
Go

// +build !appengine,!js,windows
package logrus
import (
"io"
"os"
"syscall"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
var mode uint32
err := syscall.GetConsoleMode(syscall.Handle(v.Fd()), &mode)
return err == nil
default:
return false
}
}