Skip to content

Commit

Permalink
fix panic on log.Info call
Browse files Browse the repository at this point in the history
  • Loading branch information
mwindower committed Nov 24, 2020
1 parent f0cdc7a commit ba5dacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/updater/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func UpdateToSpecVersion(f firewallv1.Firewall, log logr.Logger, recorder record
}

if f.Spec.ControllerVersion == v.Version {
log.Info("firewall-controller version %s is already in place", v.Version)
log.Info("firewall-controller version is already in place", "version", v.Version)
return nil
}

Expand Down

0 comments on commit ba5dacb

Please sign in to comment.