ExampleLogger demonstrates how to implement the Logger interface.
| 45 | |
| 46 | // ExampleLogger demonstrates how to implement the Logger interface. |
| 47 | type ExampleLogger struct{} |
| 48 | |
| 49 | func (l *ExampleLogger) Debug(format string, args ...interface{}) { |
| 50 | log.Printf("[DEBUG] "+format, args...) |
nothing calls this directly
no outgoing calls
no test coverage detected