Skip to content

Commit f21dd11

Browse files
committed
chore(logs): set manager setup log level to 4
1 parent c984467 commit f21dd11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/olm/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111

1212
configclientset "github.com/openshift/client-go/config/clientset/versioned"
1313
configv1client "github.com/openshift/client-go/config/clientset/versioned/typed/config/v1"
14-
"github.com/operator-framework/operator-lifecycle-manager/pkg/lib/queueinformer"
1514
"github.com/prometheus/client_golang/prometheus/promhttp"
1615
"github.com/sirupsen/logrus"
1716
"github.com/spf13/pflag"
@@ -24,6 +23,7 @@ import (
2423
"github.com/operator-framework/operator-lifecycle-manager/pkg/lib/operatorclient"
2524
"github.com/operator-framework/operator-lifecycle-manager/pkg/lib/operatorstatus"
2625
"github.com/operator-framework/operator-lifecycle-manager/pkg/lib/profile"
26+
"github.com/operator-framework/operator-lifecycle-manager/pkg/lib/queueinformer"
2727
"github.com/operator-framework/operator-lifecycle-manager/pkg/lib/signals"
2828
"github.com/operator-framework/operator-lifecycle-manager/pkg/metrics"
2929
olmversion "github.com/operator-framework/operator-lifecycle-manager/pkg/version"

cmd/olm/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var log = ctrl.Log.WithName("manager")
1919

2020
func Manager(ctx context.Context) (ctrl.Manager, error) {
2121
ctrl.SetLogger(zap.Logger(true))
22-
setupLog := log.WithName("setup").V(1)
22+
setupLog := log.WithName("setup").V(4)
2323

2424
// Setup a Manager
2525
setupLog.Info("configuring manager")

0 commit comments

Comments
 (0)