logrus icon indicating copy to clipboard operation
logrus copied to clipboard

SetOutput will be in an endless cycle.

Open js2854 opened this issue 4 years ago • 1 comments

func (l *Logger) SetOutput(w io.Writer) {
	l.SetOutput(w)
}

should be

func (l *Logger) SetOutput(w io.Writer) {
	l.Logger.SetOutput(w)
}

js2854 avatar Mar 05 '20 03:03 js2854

It was fixed in #24

pilinux avatar Nov 13 '23 09:11 pilinux