Unverified Commit 3db67158 authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #78043 from tedyu/drop-dbg-pruning

Drop debug log in prune
parents 76c214b2 9d2a94ff
......@@ -17,8 +17,6 @@ limitations under the License.
package pruning
import (
"fmt"
structuralschema "k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
)
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment