Info logs routine messages about cron's operation.
(msg string, keysAndValues ...interface{})
| 19 | type Logger interface { |
| 20 | // Info logs routine messages about cron's operation. |
| 21 | Info(msg string, keysAndValues ...interface{}) |
| 22 | // Error logs an error condition. |
| 23 | Error(err error, msg string, keysAndValues ...interface{}) |
| 24 | } |