reg/vendor/github.com/Sirupsen/logrus/terminal_appengine.go
Jess Frazelle 73cd51c2f7
update deps
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-03-04 22:10:14 -08:00

11 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
}