Logger is implemented by any logging system that is used for standard logs.
| 23 | |
| 24 | // Logger is implemented by any logging system that is used for standard logs. |
| 25 | type Logger interface { |
| 26 | Errorf(string, ...interface{}) |
| 27 | Warningf(string, ...interface{}) |
| 28 | Infof(string, ...interface{}) |
| 29 | Debugf(string, ...interface{}) |
| 30 | } |
| 31 | |
| 32 | // Errorf logs an ERROR log message to the logger specified in opts or to the |
| 33 | // global logger if no logger is specified in opts. |
no outgoing calls
no test coverage detected
searching dependent graphs…