如何获取紧急情况的堆栈跟踪(并存储为变量)

时间:2018-08-30 18:18:57

标签: debugging go panic

众所周知,恐慌会向标准输出(Playground link)产生堆栈跟踪。:

panic: runtime error: index out of range
goroutine 1 [running]:
main.main()
    /tmp/sandbox579134920/main.go:9 +0x20

似乎您从恐慌中恢复过来时,recover()仅返回error来描述引起恐慌的原因(Playground link)。

runtime error: index out of range

我的问题是,是否可以存储写到stdout的stacktrace?与字符串runtime error: index out of range相比,它提供了更好的调试信息,因为它显示了引起恐慌的文件中的确切行。

2 个答案:

答案 0 :(得分:8)

就像上面提到的@Volker一样,以及发表为评论的内容,我们都可以使用runtime/debug包。

package main

import (
    "fmt"
    "runtime/debug"
)

func main() {
    defer func() {
        if r := recover(); r != nil {
            fmt.Println("stacktrace from panic: \n" + string(debug.Stack()))
        }
    }()

    var mySlice []int
    j := mySlice[0]

    fmt.Printf("Hello, playground %d", j)
}

打印

stacktrace from panic: 
goroutine 1 [running]:
runtime/debug.Stack(0x1042ff18, 0x98b2, 0xf0ba0, 0x17d048)
    /usr/local/go/src/runtime/debug/stack.go:24 +0xc0
main.main.func1()
    /tmp/sandbox973508195/main.go:11 +0x60
panic(0xf0ba0, 0x17d048)
    /usr/local/go/src/runtime/panic.go:502 +0x2c0
main.main()
    /tmp/sandbox973508195/main.go:16 +0x60

Playground link

答案 1 :(得分:1)

创建一个日志文件,将堆栈跟踪添加到用于stdout或stderr的文件中。这将在文件中添加包括错误行在内的时间的数据。

package main

import (
    "log"
    "os"
    "runtime/debug"
)

func main() {

    defer func() {
        if r := recover(); r != nil {
            log.Println(string(debug.Stack()))
        }
    }()

    //create your file with desired read/write permissions
    f, err := os.OpenFile("filename", os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
    if err != nil {
        log.Println(err)
    }

    //set output of logs to f
    log.SetOutput(f)
    var mySlice []int
    j := mySlice[0]

    log.Println("Hello, playground %d", j)

    //defer to close when you're done with it, not because you think it's idiomatic!
    f.Close()
}

Go playground上的工作示例