Skip to content
Snippets Groups Projects
Commit 42434034 authored by Daniel Nelson's avatar Daniel Nelson Committed by GitHub
Browse files

Remove warning when JSON contains null value (#3359)

parent 3bbc2bee
No related branches found
No related tags found
No related merge requests found
...@@ -159,8 +159,6 @@ func (f *JSONFlattener) FullFlattenJSON( ...@@ -159,8 +159,6 @@ func (f *JSONFlattener) FullFlattenJSON(
return nil return nil
} }
case nil: case nil:
// ignored types
fmt.Println("json parser ignoring " + fieldname)
return nil return nil
default: default:
return fmt.Errorf("JSON Flattener: got unexpected type %T with value %v (%s)", return fmt.Errorf("JSON Flattener: got unexpected type %T with value %v (%s)",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment