(ctx context.Context, s string, i ...any)
| 36 | } |
| 37 | |
| 38 | func (m myLog) Info(ctx context.Context, s string, i ...any) { |
| 39 | m.log.Info().Msgf(s, i...) |
| 40 | } |
| 41 | |
| 42 | func (m myLog) Warn(ctx context.Context, s string, i ...any) { |
| 43 | m.log.Warn().Msgf(s, i...) |
no outgoing calls
no test coverage detected