Goa 日志管理
Goa
的日志格式固定,如测试代码的 mount
日志:
INFO[01-25|09:56:34] mount app=API ctrl=Operands action=Add route="GET /add/:left/:right"
依次为:
- 日志类型
- 日志时间
- 行为名称
- 日志内容
其中 日志内容
是以 key=value
的形式存在。
Logger
接口的实现写在包 gopkg.in/inconshreveable/log15.v2
,Goa 将其重命名为 log:
// A Logger writes key/value pairs to a Handler
type Logger interface {
// New returns a new Logger that has this logger's context plus the given context
New(ctx ...interface{}) Logger
// SetHandler updates the logger to write records to the specified handler.
SetHandler(h Handler)
// Log a message at the given level with context key/value pairs
Debug(msg string, ctx ...interface{})
Info(msg string, ctx ...interface{})
Warn(msg string, ctx ...interface{})
Error(msg string, ctx ...interface{})
Crit(msg string, ctx ...interface{})
}
具体调用方法为:
service.Info("mount", "ctrl", "Operands", "action", "Add", "route", "GET /add/:left/:right")
第一个是日志的名字,其他必须是成对出现,每对为对应的 key=value。
注意
- Goa 不支持日志存储,因为对日志存储的需求因人而异。为不影响访问速度,建议自省实现异步的日志存储,可以使用 MQ。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: goa Runtime 运行时
下一篇: MyBatis 介绍和使用
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论