ご存じのとおり、パニックはstdoutへのスタックトレースを生成します( 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に書き込まれたスタックトレースを保存することは可能ですか?これは、パニックの原因となったファイル内の正確な行を表示するため、文字列_runtime error: index out of range
_よりもはるかに優れたデバッグ情報を提供します。
上記の@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
ログファイルを作成して、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 の作業例