From 424340343248db788dbeb969407d27c8e3072d7d Mon Sep 17 00:00:00 2001
From: Daniel Nelson <daniel@wavesofdawn.com>
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 50b3d368..ecf9996a 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)",
-- 
GitLab