Documentation
¶
Index ¶
- Variables
- func New(lg logger.Logger, cfg Config) gormlogger.Interface
- type Config
- type Logger
- func (l Logger) Error(ctx context.Context, msg string, data ...interface{})
- func (l Logger) Info(ctx context.Context, msg string, data ...interface{})
- func (l *Logger) LogMode(level gormlogger.LogLevel) gormlogger.Interface
- func (l Logger) Trace(ctx context.Context, begin time.Time, fc func() (string, int64), err error)
- func (l Logger) Warn(ctx context.Context, msg string, data ...interface{})
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Default = New(nil, Config{ SlowThreshold: 200 * time.Millisecond, LogLevel: gormlogger.Info, IgnoreRecordNotFoundError: false, }) Recorder = traceRecorder{Interface: Default, BeginAt: time.Now()} )
View Source
var ErrRecordNotFound = errors.New("record not found")
Functions ¶
Types ¶
type Config ¶
type Config struct {
SlowThreshold time.Duration
IgnoreRecordNotFoundError bool
LogLevel gormlogger.LogLevel
}
type Logger ¶
type Logger struct {
Config
// contains filtered or unexported fields
}
func (*Logger) LogMode ¶
func (l *Logger) LogMode(level gormlogger.LogLevel) gormlogger.Interface
LogMode log mode
Click to show internal directories.
Click to hide internal directories.