feihua / zero-admin

Zero-Admin 是一套基于 go-zero 框架实现的电商系统的后端服务
https://feihua.github.io
Apache License 2.0
694 stars 175 forks source link

数据库的日志输问题 #42

Closed timchine closed 1 month ago

timchine commented 1 month ago
func (w Writer) Printf(format string, args ...interface{}) {
    logx.Infof(format, args)
}

应该改成

func (w Writer) Printf(format string, args ...interface{}) {
    logx.Infof(format, args...)
}
feihua commented 1 month ago

已修复