1
0
Fork 0
mirror of https://github.com/Luzifer/continuous-spark.git synced 2024-12-21 02:01:16 +00:00
continuous-spark/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
Knut Ahlers fe1777985c
Vendor update
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-01-27 15:29:46 +01:00

19 lines
270 B
Go

// +build !appengine,!js,!windows,!aix
package logrus
import (
"io"
"os"
"golang.org/x/crypto/ssh/terminal"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return terminal.IsTerminal(int(v.Fd()))
default:
return false
}
}