GoFrame 日志组件-JSON格式

glog​对日志分析工具非常友好,支持输出​JSON​格式的日志内容,以便于后期对日志内容进行解析分析。想要支持​JSON​数据格式的日志输出非常简单,给打印方法提供​map​/​struct​类型参数即可。

使用示例:

package main

import (
	"context"

	"github.com/gogf/gf/v2/frame/g"
)

func main() {
	ctx := context.TODO()
	g.Log().Debug(ctx, g.Map{"uid": 100, "name": "john"})
	type User struct {
		Uid  int    `json:"uid"`
		Name string `json:"name"`
	}
	g.Log().Debug(ctx, User{100, "john"})
}

执行后,终端输出结果:

2019-06-02 15:28:52.653 [DEBU] {"name":"john","uid":100}
2019-06-02 15:28:52.653 [DEBU] {"uid":100,"name":"john"}

作者:terry,如若转载,请注明出处:https://www.web176.com/goframe/21101.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2023年5月18日
下一篇 2023年5月18日

相关推荐

发表回复

登录后才能评论