1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-05 19:47:47 +00:00
rke/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
2019-08-19 11:02:43 -07:00

18 lines
232 B
Go

// +build !appengine,!js,!windows,!nacl,!plan9
package logrus
import (
"io"
"os"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return isTerminal(int(v.Fd()))
default:
return false
}
}