This website requires JavaScript.
Explore
Help
Sign In
mirror
/
logrus
mirror of
https://github.com/sirupsen/logrus.git
Watch
1
Star
0
Fork
You've already forked logrus
1
Code
Issues
Packages
Projects
Releases
Wiki
Activity
0f544bf278
logrus
/
terminal_check_js.go
12 lines
105 B
Go
Raw
Normal View
History
Unescape
Escape
Fix GopherJS build tags The GopherJS build tag is "js" not "gopherjs" Signed-off-by: Christian Stewart <christian@paral.in>
2018-06-21 07:39:23 +03:00
// +build js
package
logrus
import
(
"io"
)
Keep terminal check naming convention
2018-08-05 19:43:49 +03:00
func
checkIfTerminal
(
w
io
.
Writer
)
bool
{
Fix GopherJS build tags The GopherJS build tag is "js" not "gopherjs" Signed-off-by: Christian Stewart <christian@paral.in>
2018-06-21 07:39:23 +03:00
return
false
}