terminal: Include appengine tag to compile for GAE

This commit is contained in:
Shintaro Kaneko
2016-04-02 05:06:31 +00:00
parent 4b6ea7319e
commit dfb0e1d797
6 changed files with 14 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
// +build appengine
package logrus
// IsTerminal returns true if stderr's file descriptor is a terminal.
func IsTerminal() bool {
return true
}