(ctx context.Context, s string, i ...any)
| 40 | } |
| 41 | |
| 42 | func (m myLog) Warn(ctx context.Context, s string, i ...any) { |
| 43 | m.log.Warn().Msgf(s, i...) |
| 44 | } |
| 45 | |
| 46 | func (m myLog) Error(ctx context.Context, s string, i ...any) { |
| 47 | m.log.Error().Msgf(s, i...) |
no outgoing calls
no test coverage detected