utils/logger/logger.go

62 lines
1.4 KiB
Go
Raw Permalink Normal View History

2022-07-16 19:49:44 +00:00
package logger
import (
"context"
"errors"
"time"
log "github.com/sirupsen/logrus"
"gorm.io/gorm"
gormlogger "gorm.io/gorm/logger"
"gorm.io/gorm/utils"
)
type logger struct {
SlowThreshold time.Duration
SourceField string
SkipErrRecordNotFound bool
}
func New() *logger {
return &logger{
SkipErrRecordNotFound: true,
}
}
func (l *logger) LogMode(gormlogger.LogLevel) gormlogger.Interface {
return l
}
func (l *logger) Info(ctx context.Context, s string, args ...interface{}) {
log.WithContext(ctx).Infof(s, args)
}
func (l *logger) Warn(ctx context.Context, s string, args ...interface{}) {
log.WithContext(ctx).Warnf(s, args)
}
func (l *logger) Error(ctx context.Context, s string, args ...interface{}) {
log.WithContext(ctx).Errorf(s, args)
}
func (l *logger) Trace(ctx context.Context, begin time.Time, fc func() (string, int64), err error) {
elapsed := time.Since(begin)
sql, _ := fc()
fields := log.Fields{}
if l.SourceField != "" {
fields[l.SourceField] = utils.FileWithLineNum()
}
if err != nil && !(errors.Is(err, gorm.ErrRecordNotFound) && l.SkipErrRecordNotFound) {
fields[log.ErrorKey] = err
log.WithContext(ctx).WithFields(fields).Errorf("%s [%s]", sql, elapsed)
return
}
if l.SlowThreshold != 0 && elapsed > l.SlowThreshold {
log.WithContext(ctx).WithFields(fields).Warnf("%s [%s]", sql, elapsed)
return
}
log.WithContext(ctx).WithFields(fields).Debugf("%s [%s]", sql, elapsed)
}