Skip to content

Commit

Permalink
Merge pull request #109044 from liggitt/encoder-log
Browse files Browse the repository at this point in the history
Raise verbosity of EncoderWithAllocator log
  • Loading branch information
k8s-ci-robot committed Mar 26, 2022
2 parents 898443f + 466ddd0 commit 98eff19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (c *codec) doEncode(obj runtime.Object, w io.Writer, memAlloc runtime.Memor
return encoder.EncodeWithAllocator(obj, w, memAlloc)
}
} else {
klog.V(4).Infof("a memory allocator was provided but the encoder %s doesn't implement the runtime.EncoderWithAllocator, using regular encoder.Encode method", c.encoder.Identifier())
klog.V(6).Infof("a memory allocator was provided but the encoder %s doesn't implement the runtime.EncoderWithAllocator, using regular encoder.Encode method", c.encoder.Identifier())
}
}
switch obj := obj.(type) {
Expand Down

0 comments on commit 98eff19

Please sign in to comment.