1 Star 0 Fork 1

greatesoft/logrus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
terminal_check_notappengine.go 232 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Bariod 提交于 2019-05-18 11:44 . fix build break for plan9
// +build !appengine,!js,!windows,!nacl,!plan9
package logrus
import (
"io"
"os"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return isTerminal(int(v.Fd()))
default:
return false
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/greatesoft/logrus.git
[email protected]:greatesoft/logrus.git
greatesoft
logrus
logrus
master

搜索帮助