blob: 04fdb7ba37100722f09c3af825f0caa799ff2900 [file] [log] [blame]
sslobodrd046be82019-01-16 10:02:22 -05001// +build !appengine,!js,!windows,aix
2
3package logrus
4
5import "io"
6
7func checkIfTerminal(w io.Writer) bool {
8 return false
9}