cri-o/vendor/github.com/Sirupsen/logrus/terminal_appengine.go
Antonio Murdaca 148e72d81e
vendor: remove dep and use vndr
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2017-06-07 00:04:21 +02:00

10 lines
171 B
Go

// +build appengine
package logrus
import "io"
// IsTerminal returns true if stderr's file descriptor is a terminal.
func IsTerminal(f io.Writer) bool {
return true
}