SetOutput sets the logger output.
(output io.Writer)
| 111 | |
| 112 | // SetOutput sets the logger output. |
| 113 | func (logger *Logger) SetOutput(output io.Writer) { |
| 114 | logger.Logger.SetOutput(output) |
| 115 | } |
| 116 | |
| 117 | // SetFormatter sets the logger formatter. |
| 118 | func (logger *Logger) SetFormatter(formatter Formatter) { |
no outgoing calls
no test coverage detected