mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
15 lines
244 B
Go
15 lines
244 B
Go
package utils
|
|
|
|
import (
|
|
"io/ioutil"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// NewDummyLog creates a new dummy Log for testing
|
|
func NewDummyLog() *logrus.Entry {
|
|
log := logrus.New()
|
|
log.Out = ioutil.Discard
|
|
return log.WithField("test", "test")
|
|
}
|