aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
blob: 97af92c68ea2d7b305f501ae610aee16e8e205db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// +build js nacl plan9

package logrus

import (
	"io"
)

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