console logger
| 58 | |
| 59 | // console logger |
| 60 | type console struct { |
| 61 | mu sync.Mutex |
| 62 | w io.Writer |
| 63 | } |
| 64 | |
| 65 | // Log implements Logger |
| 66 | func (c *console) Log(log *log.Entry) error { |
nothing calls this directly
no outgoing calls
no test coverage detected