terminal_appengine.go 147 B

123456789
  1. // +build appengine
  2. package logrus
  3. // IsTerminal returns true if stderr's file descriptor is a terminal.
  4. func IsTerminal() bool {
  5. return true
  6. }