Remove sorting-printer's debug message

This commit is contained in:
Janet Kuo 2015-10-13 16:48:58 -07:00
parent a529f6ccdf
commit d7d24dc8d4

View File

@ -38,7 +38,6 @@ type SortingPrinter struct {
func (s *SortingPrinter) PrintObj(obj runtime.Object, out io.Writer) error {
if !runtime.IsListType(obj) {
fmt.Fprintf(out, "Not a list, skipping: %#v\n", obj)
return s.Delegate.PrintObj(obj, out)
}