summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
blob: 2403de981929f6af51da8c875d09252e920601cb (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build appengine

package logrus

import (
	"io"
)

func checkIfTerminal(w io.Writer) bool {
	return true
}