cutego/internal/utils/logger.go
2016-10-28 04:00:58 +02:00

15 lines
155 B
Go
Executable file

package utils
import (
"os"
"github.com/Sirupsen/logrus"
)
var Log = logrus.New()
func init() {
Log.Out = os.Stderr
Log.Level = logrus.InfoLevel
}