gf/.example/debug/gdebug/gdebug.go

13 lines
180 B
Go
Raw Normal View History

package main
import (
"fmt"
"github.com/gogf/gf/debug/gdebug"
)
func main() {
2019-10-30 15:12:19 +08:00
gdebug.PrintStack()
fmt.Println(gdebug.CallerPackage())
fmt.Println(gdebug.CallerFunction())
}