Files
logrus/text_formatter_js.go
T
Christian Stewart eed1c0f832 Fix GopherJS build tags
The GopherJS build tag is "js" not "gopherjs"

Signed-off-by: Christian Stewart <christian@paral.in>
2018-06-20 21:39:23 -07:00

12 lines
124 B
Go

// +build js
package logrus
import (
"io"
)
func (f *TextFormatter) checkIfTerminal(w io.Writer) bool {
return false
}