2
0
mirror of https://github.com/42wim/matterbridge synced 2024-11-05 12:00:27 +00:00
matterbridge/vendor/github.com/Sirupsen/logrus/terminal_solaris.go

22 lines
352 B
Go
Raw Normal View History

2017-03-25 19:45:10 +00:00
// +build solaris,!appengine
2016-04-10 21:39:38 +00:00
package logrus
import (
2017-03-25 19:45:10 +00:00
"io"
2016-04-10 21:39:38 +00:00
"os"
"golang.org/x/sys/unix"
)
// IsTerminal returns true if the given file descriptor is a terminal.
2017-03-25 19:45:10 +00:00
func IsTerminal(f io.Writer) bool {
switch v := f.(type) {
case *os.File:
_, err := unix.IoctlGetTermios(int(v.Fd()), unix.TCGETA)
return err == nil
default:
return false
}
2016-04-10 21:39:38 +00:00
}