(msg string, args ...any)
| 5 | } |
| 6 | |
| 7 | func (a GoCronLoggerAdapter) Debug(msg string, args ...any) { |
| 8 | a.Logger.Debug(append([]any{msg}, args...)...) |
| 9 | } |
| 10 | |
| 11 | func (a GoCronLoggerAdapter) Info(msg string, args ...any) { |
| 12 | a.Logger.Info(append([]any{msg}, args...)...) |
no outgoing calls
no test coverage detected