Files
2017-02-14 13:59:07 -08:00

9 lines
158 B
Go

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