5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-05 10:46:16 +00:00
matterbridge/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go

20 lines
265 B
Go
Raw Normal View History

// +build !appengine,!js,!windows
2018-02-20 23:41:09 +01:00
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
}
}