Remove warning when JSON contains null value (#3359)

This commit is contained in:
Daniel Nelson
2017-10-19 16:25:58 -07:00
committed by GitHub
parent 3bbc2beeed
commit 4243403432

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)",