Skip to content

Commit

Permalink
fix(proxy): klog.Info doesn't supports formatting directive %s
Browse files Browse the repository at this point in the history
  • Loading branch information
plaffitt committed Nov 17, 2023
1 parent 56a7851 commit 3f859a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/proxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func main() {
klog.Info("using in-cluster configuration")
config, err = rest.InClusterConfig()
} else {
klog.Info("using configuration from '%s'", kubeconfig)
klog.Infof("using configuration from '%s'", kubeconfig)
config, err = clientcmd.BuildConfigFromFlags("", kubeconfig)
}

Expand Down

0 comments on commit 3f859a1

Please sign in to comment.