package main
import (
"context"
"github.com/gogf/gf/v2/frame/g"
)
func PrintLog(ctx context.Context, content string) {
g.Log().Skip(1).Line().Print(ctx, "line number with skip:", content)
g.Log().Line().Print(ctx, "line number without skip:", content)
}
func main() {
ctx := context.TODO()
PrintLog(ctx, "just test")
}
3 Comments
kkstun
在配置文件里配置好了,没有生效?
kkstun
debug了一下,确实没有取到值
LogPath=“”
kkstun
不是在logger里面设置。在server里面。。。。