Vendor in logrus v1.4.2

Fixes #3346

Signed-off-by: Jhon Honce <jhonce@redhat.com>
This commit is contained in:
Jhon Honce
2019-06-18 09:35:48 -07:00
parent 1c6e4dc6bb
commit d0d9a4c9b1
34 changed files with 1055 additions and 566 deletions

View File

@@ -0,0 +1,17 @@
// +build !appengine,!js,!windows,!nacl,!plan9
package logrus
import (
"io"
"os"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return isTerminal(int(v.Fd()))
default:
return false
}
}