From 416f3e3681ef7ad06d5dd4a19b2275966c681e62 Mon Sep 17 00:00:00 2001 From: Ganesha Danu Date: Wed, 18 Sep 2019 00:05:45 +0700 Subject: [PATCH] remove uneeded log --- gqlyzer.go | 1 - 1 file changed, 1 deletion(-) diff --git a/gqlyzer.go b/gqlyzer.go index ac7d839..30250a5 100644 --- a/gqlyzer.go +++ b/gqlyzer.go @@ -37,7 +37,6 @@ func (l *Lexer) Parse() (token.Operation, error) { } func (l *Lexer) ParseWithVariables(variables string) (token.Operation, error) { - fmt.Println(variables) variableMap := make(map[string]interface{}) err := json.Unmarshal([]byte(variables), &variableMap)