(ctx context.Context, s string, i ...any)
| 44 | } |
| 45 | |
| 46 | func (m myLog) Error(ctx context.Context, s string, i ...any) { |
| 47 | m.log.Error().Msgf(s, i...) |
| 48 | } |
| 49 | |
| 50 | func (m myLog) Trace(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) { |
| 51 | if !m.cfg.EnableSQLOutput { |
no outgoing calls
no test coverage detected