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

20 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
}
}