pull/1614/head
Mike Auclair 2024-06-24 16:50:27 +00:00
parent 3ca01f4bc3
commit 4a90eff4ae
1 changed files with 2 additions and 2 deletions

View File

@ -217,8 +217,8 @@ func CallerInfo() []string {
var name string
callers := []string{}
pcs := []uintptr{}
n := runtime.Callers(0, pcs)
pcs := make([]uintptr, 50)
n := runtime.Callers(1, pcs)
if n == 0 {
return []string{}
}