13 lines
174 B
Go
13 lines
174 B
Go
package logging
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var Log = logrus.New()
|
|
|
|
func init() {
|
|
Log.SetLevel(logrus.InfoLevel)
|
|
Log.SetFormatter(&logrus.TextFormatter{})
|
|
}
|