dex/vendor/github.com/sirupsen/logrus/terminal_appengine.go

11 lines
171 B
Go
Raw Normal View History

2016-12-08 03:58:11 +05:30
// +build appengine
package logrus
2017-07-26 02:19:34 +05:30
import "io"
2016-12-08 03:58:11 +05:30
// IsTerminal returns true if stderr's file descriptor is a terminal.
2017-07-26 02:19:34 +05:30
func IsTerminal(f io.Writer) bool {
2016-12-08 03:58:11 +05:30
return true
}