2022-05-03 20:03:37 +00:00
|
|
|
// Copyright (c) 2019, Drone Plugins project authors
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
|
2019-10-11 18:34:47 +00: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"
|
2019-11-23 03:56:16 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2019-10-11 18:34:47 +00:00
|
|
|
)
|
|
|
|
|
2019-12-20 20:47:50 +00:00
|
|
|
// loggingFlags has the cli.Flags for logging config.
|
2019-10-11 18:34:47 +00:00
|
|
|
func loggingFlags() []cli.Flag {
|
|
|
|
return []cli.Flag{
|
2019-11-23 03:56:16 +00:00
|
|
|
&cli.StringFlag{
|
2019-12-20 20:47:50 +00:00
|
|
|
Name: "log-level",
|
|
|
|
Usage: "log level",
|
2019-11-23 03:56:16 +00:00
|
|
|
EnvVars: []string{"PLUGIN_LOG_LEVEL"},
|
2019-10-11 18:34:47 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-20 21:58:54 +00:00
|
|
|
// LoggingFromContext sets the logrus logging level.
|
|
|
|
func LoggingFromContext(ctx *cli.Context) {
|
2019-12-20 20:47:50 +00:00
|
|
|
lvl, err := logrus.ParseLevel(ctx.String("log-level"))
|
2019-10-11 18:34:47 +00:00
|
|
|
if err != nil {
|
|
|
|
lvl = logrus.InfoLevel
|
|
|
|
}
|
|
|
|
|
|
|
|
logrus.SetLevel(lvl)
|
|
|
|
}
|