a97d7c0c15
Signed-off-by: Igor Morozov <igor@adhoc05-sjc1.prod.uber.internal>
10 lines
171 B
Go
10 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
|
|
}
|