Skip to content

Commit

Permalink
Merge branch 'main' into vegeta
Browse files Browse the repository at this point in the history
  • Loading branch information
rsevilla87 authored Oct 17, 2023
2 parents 8ef48d8 + 5776cd4 commit e773de3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cmd/ingress-perf.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import (
_ "github.com/cloud-bulldozer/ingress-perf/pkg/log"
"github.com/cloud-bulldozer/ingress-perf/pkg/runner"
uid "github.com/satori/go.uuid"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
Expand Down Expand Up @@ -54,11 +53,11 @@ func run() *cobra.Command {
SilenceUsage: true,
SilenceErrors: true,
PreRunE: func(cmd *cobra.Command, args []string) error {
lvl, err := logrus.ParseLevel(logLevel)
lvl, err := log.ParseLevel(logLevel)
if err != nil {
return err
}
logrus.SetLevel(lvl)
log.SetLevel(lvl)
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down

0 comments on commit e773de3

Please sign in to comment.