Skip to content

Commit 9f57e39

Browse files
committed
fix: [controller-runtime] log.SetLogger(...) was never called
1 parent 06ce097 commit 9f57e39

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ require (
2626
github.com/Microsoft/hcsshim v0.11.4 // indirect
2727
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2828
github.com/beorn7/perks v1.0.1 // indirect
29+
github.com/bombsimon/logrusr/v4 v4.1.0 // indirect
2930
github.com/cespare/xxhash/v2 v2.2.0 // indirect
3031
github.com/chai2010/gettext-go v1.0.2 // indirect
3132
github.com/containerd/containerd v1.7.13 // indirect

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24
3333
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
3434
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
3535
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
36+
github.com/bombsimon/logrusr/v4 v4.1.0 h1:uZNPbwusB0eUXlO8hIUwStE6Lr5bLN6IgYgG+75kuh4=
37+
github.com/bombsimon/logrusr/v4 v4.1.0/go.mod h1:pjfHC5e59CvjTBIU3V3sGhFWFAnsnhOR03TRc6im0l8=
3638
github.com/bshuster-repo/logrus-logstash-hook v1.0.0 h1:e+C0SB5R1pu//O4MQ3f9cFuPGoOVeF2fE4Og9otCc70=
3739
github.com/bshuster-repo/logrus-logstash-hook v1.0.0/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk=
3840
github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd h1:rFt+Y/IK1aEZkEHchZRSq9OQbsSzIT/OrI8YFFmRIng=

pkg/flux/reconcile.go

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
"context"
2222
"time"
2323

24+
"github.com/bombsimon/logrusr/v4"
2425
helmv2beta1 "github.com/fluxcd/helm-controller/api/v2beta1"
2526
kustomizationv1 "github.com/fluxcd/kustomize-controller/api/v1"
2627
"github.com/fluxcd/pkg/apis/meta"
@@ -38,6 +39,7 @@ import (
3839
"k8s.io/client-go/util/retry"
3940
kstatus "sigs.k8s.io/cli-utils/pkg/kstatus/status"
4041
"sigs.k8s.io/controller-runtime/pkg/client"
42+
logf "sigs.k8s.io/controller-runtime/pkg/log"
4143
)
4244

4345
type reconcileCommand struct {
@@ -109,6 +111,9 @@ func (r *reconcileCommand) Run(config *rest.Config, namespace, name string) {
109111
kustomizationv1.AddToScheme(scheme)
110112
helmv2beta1.AddToScheme(scheme)
111113

114+
log := logrusr.New(logrus.New())
115+
logf.SetLogger(log)
116+
112117
kubeClient, err := client.NewWithWatch(config, client.Options{
113118
Scheme: scheme,
114119
})

0 commit comments

Comments
 (0)