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_check_notappengine.go
2018-02-20 23:41:09 +01:00

20 lines
252 B
Go

// +build !appengine
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
}
}