blob: e011a869458adcc3911c1468e595f3b7f62e8dda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// +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
}
|