blob: e011a869458adcc3911c1468e595f3b7f62e8dda [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// +build appengine
2
3package logrus
4
5import "io"
6
7// IsTerminal returns true if stderr's file descriptor is a terminal.
8func IsTerminal(f io.Writer) bool {
9 return true
10}