Drop debug log in prune

k3s-v1.15.3
Ted Yu 2019-05-17 11:04:08 -07:00 committed by Ted Yu
parent 314264aeaf
commit 9d2a94ffa2
1 changed files with 0 additions and 3 deletions

View File

@ -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 {