SetOutput sets the terminal for real-time log display.
(show io.Writer)
| 90 | |
| 91 | // SetOutput sets the terminal for real-time log display. |
| 92 | func (ml *mylog) SetOutput(show io.Writer) Logs { |
| 93 | ml.BeeLogger.SetLogger("console", map[string]interface{}{ |
| 94 | "writer": show, |
| 95 | "level": config.Conf().Log.ConsoleLevel(), |
| 96 | }) |
| 97 | return ml |
| 98 | } |
nothing calls this directly
no test coverage detected