Remove warning when JSON contains null value (#3359)

(cherry picked from commit 4243403432)
This commit is contained in:
Daniel Nelson
2017-10-19 16:25:58 -07:00
committed by Daniel Nelson
parent cf7590b88e
commit cb9c1653d3

View File

@@ -159,8 +159,6 @@ func (f *JSONFlattener) FullFlattenJSON(
return nil
}
case nil:
// ignored types
fmt.Println("json parser ignoring " + fieldname)
return nil
default:
return fmt.Errorf("JSON Flattener: got unexpected type %T with value %v (%s)",