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