goframe 框架提供了丰富的调试功能,由 gdebug 组件实现。

    调试功能-gdebug - 图1注意

    所谓的“调试”方法大多数和开发环境有一定关系,包含堆栈和调用链信息分析,并且性能往往不是特别高。

    使用方式:

    1. import "github.com/gogf/gf/v2/debug/gdebug"

    接口文档:

    https://pkg.go.dev/github.com/gogf/gf/v2/debug/gdebug

    方法列表:

    1. func BinVersion() string
    2. func BinVersionMd5() string
    3. func Caller(skip ...int) (function string, path string, line int)
    4. func CallerDirectory() string
    5. func CallerFileLine() string
    6. func CallerFileLineShort() string
    7. func CallerFilePath() string
    8. func CallerFunction() string
    9. func CallerPackage() string
    10. func CallerWithFilter(filter string, skip ...int) (function string, path string, line int)
    11. func FuncName(f interface{}) string
    12. func FuncPath(f interface{}) string
    13. func GoroutineId() int
    14. func PrintStack(skip ...int)
    15. func Stack(skip ...int) string
    16. func StackWithFilter(filter string, skip ...int) string
    17. func StackWithFilters(filters []string, skip ...int) string
    18. func TestDataPath(names ...string) string

    熟悉 PHP 的同学可能比较好理解,这里某些方法其实和 PHP 的部分 魔术常量 功能一致。 CallerDirectory 对应 __DIR__CallerFilePath 对应 __FILE__CallerFunction 对应 __FUNCTION__