Logger is the interface that wraps the basic logging methods used by gocron. The methods are modeled after the standard library slog package. The default logger is a no-op logger. To enable logging, use one of the provided New*Logger functions or implement your own Logger. The actual level of Log th
| 15 | // or implement your own Logger. The actual level of Log that is logged |
| 16 | // is handled by the implementation. |
| 17 | type Logger interface { |
| 18 | Debug(msg string, args ...any) |
| 19 | Error(msg string, args ...any) |
| 20 | Info(msg string, args ...any) |
| 21 | Warn(msg string, args ...any) |
| 22 | } |
| 23 | |
| 24 | var _ Logger = (*noOpLogger)(nil) |
| 25 |
no outgoing calls
no test coverage detected
searching dependent graphs…