mirror of
https://gitee.com/johng/gf
synced 2026-06-30 19:17:30 +08:00
13 lines
138 B
Go
13 lines
138 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
func main() {
|
|
g.Log().PrintStack()
|
|
|
|
fmt.Println(g.Log().GetStack())
|
|
}
|