This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
dex/vendor/github.com/sirupsen/logrus/terminal_appengine.go

11 lines
171 B
Go
Raw Normal View History

2016-12-07 22:28:11 +00:00
// +build appengine
package logrus
2017-07-25 20:49:34 +00:00
import "io"
2016-12-07 22:28:11 +00:00
// IsTerminal returns true if stderr's file descriptor is a terminal.
2017-07-25 20:49:34 +00:00
func IsTerminal(f io.Writer) bool {
2016-12-07 22:28:11 +00:00
return true
}