diff options
Diffstat (limited to 'vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go')
-rw-r--r-- | vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go b/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go deleted file mode 100644 index 3293fb3..0000000 --- a/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | // +build !appengine,!js,!windows,!nacl,!plan9 | ||
2 | |||
3 | package logrus | ||
4 | |||
5 | import ( | ||
6 | "io" | ||
7 | "os" | ||
8 | ) | ||
9 | |||
10 | func checkIfTerminal(w io.Writer) bool { | ||
11 | switch v := w.(type) { | ||
12 | case *os.File: | ||
13 | return isTerminal(int(v.Fd())) | ||
14 | default: | ||
15 | return false | ||
16 | } | ||
17 | } | ||