Skip to content

Commit

Permalink
Fix conciseLogger's incorrect call to variadic func (kubernetes-sigs#…
Browse files Browse the repository at this point in the history
  • Loading branch information
johngmyers authored and Timothy-Dougherty committed Nov 9, 2023
1 parent 1dc9f5e commit d85feb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runtime/concise_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type conciseLogger struct {
}

func (r *conciseLogger) WithValues(keysAndValues ...interface{}) logr.LogSink {
return &conciseLogger{r.LogSink.WithValues(keysAndValues)}
return &conciseLogger{r.LogSink.WithValues(keysAndValues...)}
}

func (r *conciseLogger) WithName(name string) logr.LogSink {
Expand Down

0 comments on commit d85feb1

Please sign in to comment.