From 6f135f75bc0e4fdcd97d302b43f13044310b6519 Mon Sep 17 00:00:00 2001 From: Ricardo Amaro Date: Thu, 19 Mar 2020 15:30:24 +0000 Subject: [PATCH] Remove bindings debug msg --- c-bindings/c-bindings.go | 1 - 1 file changed, 1 deletion(-) diff --git a/c-bindings/c-bindings.go b/c-bindings/c-bindings.go index 970d581..98e66fa 100644 --- a/c-bindings/c-bindings.go +++ b/c-bindings/c-bindings.go @@ -79,7 +79,6 @@ func (i *importer) Import(importedFrom, importedPath string) (contents jsonnet.C if _, isCached := i.contentCache[foundHere]; !isCached { i.contentCache[foundHere] = jsonnet.MakeContents(result) } - fmt.Fprintf(os.Stderr, "%#+v\n", i.contentCache[foundHere]) return i.contentCache[foundHere], foundHere, nil }