Skip to content

Commit

Permalink
Fix conciseLogger's incorrect call to variadic func (#3066)
Browse files Browse the repository at this point in the history
  • Loading branch information
johngmyers authored Feb 20, 2023
1 parent e1fb94a commit 3caec46
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 3caec46

Please sign in to comment.