Files
LearnGO/go/pkg/mod/github.com/sirupsen/logrus@v1.9.3/terminal_check_notappengine.go
T
2024-09-19 21:38:24 -04: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
}
}