This repository has been archived on 2022-08-17. 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-08 03:58:11 +05:30
// +build appengine
package logrus
// IsTerminal returns true if stderr's file descriptor is a terminal.
func IsTerminal() bool {
return true
}