(ctx context.Context, s string, i ...interface{})
| 25 | } |
| 26 | |
| 27 | func (S Tracer) Error(ctx context.Context, s string, i ...interface{}) { |
| 28 | S.Logger.Error(ctx, s, i...) |
| 29 | } |
| 30 | |
| 31 | func (S Tracer) Trace(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) { |
| 32 | S.Logger.Trace(ctx, begin, fc, err) |