1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-18 06:08:02 +00:00
steve/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
2019-08-04 10:41:32 -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
}
}