Skip to content

Commit

Permalink
Update klog.go
Browse files Browse the repository at this point in the history
Co-authored-by: Marek Siarkowicz <[email protected]>
  • Loading branch information
dims and serathius authored Jul 2, 2020
1 parent 06dd2d1 commit aa26aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klog.go
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,7 @@ func (v Verbose) Error(err error, msg string, args ...interface{}) {

// ErrorS is equivalent to the global Error function, guarded by the value of v.
// See the documentation of V for usage.
func (v Verbose) ErrorS(err error, msg string, args ...interface{}) {
func (v Verbose) ErrorS(err error, msg string, keysAndValues ...interface{}) {
if v.enabled {
logging.errorS(err, v.logr, msg, args...)
}
Expand Down

0 comments on commit aa26aeb

Please sign in to comment.