mirror of
https://github.com/NotAShelf/goblin.git
synced 2024-11-01 19:11:16 +00:00
18 lines
232 B
Go
18 lines
232 B
Go
|
// +build !appengine,!js,!windows,!nacl,!plan9
|
||
|
|
||
|
package logrus
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func checkIfTerminal(w io.Writer) bool {
|
||
|
switch v := w.(type) {
|
||
|
case *os.File:
|
||
|
return isTerminal(int(v.Fd()))
|
||
|
default:
|
||
|
return false
|
||
|
}
|
||
|
}
|