普通网友 2016-02-28 06:46
浏览 101
已采纳

欺骗以快速查找在Go中引发错误的文件和行号?

In my journey with go discovered that there are no stacktraces. so whenever something breaks, all we get an simple string error message without any information where is this is coming from. This is in stark contrast with other languages where I am used to seing detailed stacktraces

For example, below is the error message from apex

$ cat event.json | apex invoke --logs webhook                                  
   ⨯ error parsing response: json: cannot unmarshal array into Go value of type map[string]interface {}

here its telling me that unmarshal to a map ins't working because event.json is an array. We have unmarshal to interface{} to support both arrays & maps.However, it doesn't tell me which file/line is causing this error.

Questions:

  1. What is way to quickly find which file/line this error coming from?
  2. In General, Are there tips/tricks which gophers use to get to the source of problem quickly from this string error message?
  3. is this how stack traces are for most go projects or there are any best practices that should be followed?
  • 写回答

3条回答 默认 最新

  • dousuie2222 2016-03-04 10:27
    关注

    What is way to quickly find which file/line this error coming from?

    There are no default stacks printed unless it's an unrecovered panic.

    In General, Are there tips/tricks which gophers use to get to the source of problem quickly from this string error message? is this how stack traces are for most go projects or there are any best practices that should be followed?

    In General, you need to check error returns from most of the function calls. There are more than one way to do that. I usually use standard library package log to print out error logs with file and line numbers for easy debugging in simple programs. For example:

    package main
    
    import "log"
    import "errors"
    
    func init() { log.SetFlags(log.Lshortfile | log.LstdFlags) }
    
    func callFunc() error {
        return errors.New("error")
    }
    
    func main() {
        if err := callFunc(); err != nil {
            log.Println(err)
        }
    }
    

    http://play.golang.org/p/0iytNw7eZ7

    output:

    2009/11/10 23:00:00 main.go:14: error
    

    Also, there are functions for you to print or retrieve current stacks in standard library runtime/debug, e.g. https://golang.org/pkg/runtime/debug/#PrintStack

    There are many community efforts on bringing error handling easier, you can search error in GoDoc: https://godoc.org/?q=error

    Hope these helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵