2017-02-01 00:45:59 +00:00
|
|
|
// +build appengine
|
|
|
|
|
|
|
|
package logrus
|
|
|
|
|
2017-06-06 07:19:04 +00:00
|
|
|
import "io"
|
|
|
|
|
2017-02-01 00:45:59 +00:00
|
|
|
// IsTerminal returns true if stderr's file descriptor is a terminal.
|
2017-06-06 07:19:04 +00:00
|
|
|
func IsTerminal(f io.Writer) bool {
|
2017-02-01 00:45:59 +00:00
|
|
|
return true
|
|
|
|
}
|