From 69591e1fabf3b4f3565c1abaf6c663ef75f8490f Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Thu, 19 Oct 2017 16:25:58 -0700 Subject: [PATCH] Remove warning when JSON contains null value (#3359) --- plugins/parsers/json/parser.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/parsers/json/parser.go b/plugins/parsers/json/parser.go index 50b3d3682..ecf9996af 100644 --- a/plugins/parsers/json/parser.go +++ b/plugins/parsers/json/parser.go @@ -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)",