5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 06:42:31 +00:00
matterbridge/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go

18 lines
232 B
Go
Raw Normal View History

2019-06-16 21:33:25 +00:00
// +build !appengine,!js,!windows,!nacl,!plan9
2018-02-20 22:41:09 +00:00
package logrus
import (
"io"
"os"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
2019-06-16 21:33:25 +00:00
return isTerminal(int(v.Fd()))
2018-02-20 22:41:09 +00:00
default:
return false
}
}