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

package logrus

import (
	"io"
)

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