Stack test

This commit is contained in:
Magnus Åhall 2023-09-26 09:03:46 +02:00
parent 1c0579d065
commit 806f31b69d

5
pkg.go
View File

@ -6,6 +6,7 @@ import (
"fmt"
"path"
"runtime"
"runtime/debug"
)
type Error struct {
@ -21,6 +22,10 @@ var (
baseDirLength int
)
func init() {
debug.PrintStack()
}
func Init() {
_, file, _, _ := runtime.Caller(1)
fmt.Printf("--\nWRAPPED_ERROR: %s\n--\n", file)