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

9 lines
147 B
Go
Raw Normal View History

2016-12-07 22:28:11 +00:00
// +build appengine
package logrus
// IsTerminal returns true if stderr's file descriptor is a terminal.
func IsTerminal() bool {
return true
}