Logger is the interface used throughout the project for logging.
| 35 | |
| 36 | // Logger is the interface used throughout the project for logging. |
| 37 | type Logger interface { |
| 38 | // Debugf is for reporting additional information about internal operations. |
| 39 | Debugf(format string, args ...interface{}) |
| 40 | // Infof is for reporting informational messages. |
| 41 | Infof(format string, args ...interface{}) |
| 42 | // Errorf is for reporting errors. |
| 43 | Errorf(format string, args ...interface{}) |
| 44 | } |
no outgoing calls
no test coverage detected