1 Star 0 Fork 21

wide288/Fyne

forked from Gitee 极速下载/Fyne 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
log.go 435 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andy Williams 提交于 2019-03-16 22:13 . Improve error handling (#152)
package fyne
import (
"log"
"runtime"
)
// LogError reports an error to the command line with the specified err cause,
// if not nil.
// The function also reports basic information about the code location.
func LogError(reason string, err error) {
log.Println("Fyne error: ", reason)
if err != nil {
log.Println(" Cause:", err)
}
_, file, line, ok := runtime.Caller(1)
if ok {
log.Printf(" At: %s:%d", file, line)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wide288/Fyne.git
[email protected]:wide288/Fyne.git
wide288
Fyne
Fyne
master

搜索帮助