logrus/terminal_appengine.go

9 lines
158 B
Go
Raw Normal View History

// +build appengine
package logrus
// IsTerminal returns true if stderr's file descriptor is a terminal.
2017-02-05 14:21:03 +00:00
func IsTerminal(f io.Writer) bool {
return true
}