| 6 | ) |
| 7 | |
| 8 | type LoggerPrinter struct { |
| 9 | logger *log.Logger |
| 10 | writesToConsole bool |
| 11 | } |
| 12 | |
| 13 | func NewWriterPrinter(writer io.Writer, writesToConsole bool) Printer { |
| 14 | return &LoggerPrinter{ |
nothing calls this directly
no outgoing calls
no test coverage detected