Merge pull request #3773 from Random-Liu/use-logrus-trace

Use logrus trace support.
This commit is contained in:
Phil Estes
2019-10-25 07:45:31 -04:00
committed by GitHub
5 changed files with 6 additions and 36 deletions

View File

@@ -284,7 +284,7 @@ func setLevel(context *cli.Context, config *srvconfig.Config) error {
l = config.Debug.Level
}
if l != "" {
lvl, err := log.ParseLevel(l)
lvl, err := logrus.ParseLevel(l)
if err != nil {
return err
}