Skip to content

Instantly share code, notes, and snippets.

@jacky1104
Forked from bnadland/Using logrus and gorm
Created May 1, 2019 15:45
Show Gist options
  • Save jacky1104/dca2959c02e54f16ba8043b69663595a to your computer and use it in GitHub Desktop.
Save jacky1104/dca2959c02e54f16ba8043b69663595a to your computer and use it in GitHub Desktop.
import (
log "github.com/sirupsen/logrus"
"github.com/jinzhu/gorm"
)
type GormLogger struct {}
func (*GormLogger) Print(v ...interface{}) {
if v[0] == "sql" {
log.WithFields(log.Fields{"module": "gorm", "type": "sql"}).Print(v[3])
}
if v[0] == "log" {
log.WithFields(log.Fields{"module": "gorm", "type": "log"}).Print(v[2])
}
}
func main() {
db, _ := gorm.Open(...)
defer db.Close()
db.SetLogger(&GormLogger{})
db.LogMode(true)
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment