australis/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
2018-11-09 15:59:12 -08:00

11 lines
111 B
Go

// +build appengine
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return true
}