Skip to content

Commit

Permalink
Merge pull request #78043 from tedyu/drop-dbg-pruning
Browse files Browse the repository at this point in the history
Drop debug log in prune
  • Loading branch information
k8s-ci-robot committed May 18, 2019
2 parents 76c214b + 9d2a94f commit 3db6715
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -17,8 +17,6 @@ limitations under the License.
package pruning

import (
"fmt"

structuralschema "k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
)

Expand Down Expand Up @@ -50,7 +48,6 @@ func prune(x interface{}, s *structuralschema.Structural) {
} else {
delete(x, k)
}
fmt.Printf("deleting %q => %#v\n", k, x)
}
case []interface{}:
if s == nil {
Expand Down

0 comments on commit 3db6715

Please sign in to comment.