Skip to content

Commit

Permalink
Missed generated code during merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bowei committed Mar 28, 2023
1 parent 44eac5f commit 6772485
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/cloud/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -21541,9 +21541,9 @@ func (g *GCEInstanceGroupManagers) List(ctx context.Context, zone string, fl *fi
callObserverEnd(ctx, ck, nil)
g.s.RateLimiter.Observe(ctx, nil, ck)

if klog.V(4).Enabled() {
if kLogEnabled(4) {
klog.V(4).Infof("GCEInstanceGroupManagers.List(%v, ..., %v) = [%v items], %v", ctx, fl, len(all), nil)
} else if klog.V(5).Enabled() {
} else if kLogEnabled(5) {
var asStr []string
for _, o := range all {
asStr = append(asStr, fmt.Sprintf("%+v", o))
Expand Down Expand Up @@ -22065,9 +22065,9 @@ func (g *GCEInstanceTemplates) List(ctx context.Context, fl *filter.F) ([]*ga.In
callObserverEnd(ctx, ck, nil)
g.s.RateLimiter.Observe(ctx, nil, ck)

if klog.V(4).Enabled() {
if kLogEnabled(4) {
klog.V(4).Infof("GCEInstanceTemplates.List(%v, ..., %v) = [%v items], %v", ctx, fl, len(all), nil)
} else if klog.V(5).Enabled() {
} else if kLogEnabled(5) {
var asStr []string
for _, o := range all {
asStr = append(asStr, fmt.Sprintf("%+v", o))
Expand Down

0 comments on commit 6772485

Please sign in to comment.