drone-plugin-lib/urfave/logging.go

34 lines
758 B
Go
Raw Normal View History

2022-05-03 22:03:37 +02:00
// Copyright (c) 2019, Drone Plugins project authors
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
2019-10-11 20:34:47 +02:00
// Use of this source code is governed by an Apache 2.0 license that can be
// found in the LICENSE file.
package urfave
import (
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
2019-10-11 20:34:47 +02:00
)
// loggingFlags has the cli.Flags for logging config.
2019-10-11 20:34:47 +02:00
func loggingFlags() []cli.Flag {
return []cli.Flag{
&cli.StringFlag{
Name: "log-level",
Usage: "log level",
EnvVars: []string{"PLUGIN_LOG_LEVEL"},
2019-10-11 20:34:47 +02:00
},
}
}
// LoggingFromContext sets the logrus logging level.
func LoggingFromContext(ctx *cli.Context) {
lvl, err := logrus.ParseLevel(ctx.String("log-level"))
2019-10-11 20:34:47 +02:00
if err != nil {
lvl = logrus.InfoLevel
}
logrus.SetLevel(lvl)
}