Log level DEBUG by default

This commit is contained in:
Toby 2021-05-09 15:16:03 -07:00
parent faabd094fd
commit 35e285ff62

View file

@ -116,7 +116,7 @@ func initApp(c *cli.Context) error {
if err == nil {
logrus.SetLevel(lvl)
} else {
logrus.SetLevel(logrus.InfoLevel)
logrus.SetLevel(logrus.DebugLevel)
}
if strings.ToLower(c.String("log-format")) == "json" {
@ -155,7 +155,7 @@ func commonFlags() []cli.Flag {
Name: "log-level",
Usage: "log level",
EnvVars: []string{"HYSTERIA_LOG_LEVEL", "LOGGING_LEVEL"},
Value: "info",
Value: "debug",
},
&cli.StringFlag{
Name: "log-timestamp",