logrus
logrus copied to clipboard
SetOutput will be in an endless cycle.
func (l *Logger) SetOutput(w io.Writer) {
l.SetOutput(w)
}
should be
func (l *Logger) SetOutput(w io.Writer) {
l.Logger.SetOutput(w)
}
It was fixed in #24