stdlog wraps the standard library logger.
| 81 | |
| 82 | // stdlog wraps the standard library logger. |
| 83 | type stdlog struct { |
| 84 | verbosity int |
| 85 | } |
| 86 | |
| 87 | func (stdlog) Infof(format string, args ...interface{}) { log.Printf(format, args...) } |
| 88 | func (stdlog) Warningf(format string, args ...interface{}) { log.Printf("WARN: "+format, args...) } |
nothing calls this directly
no outgoing calls
no test coverage detected