Remove bindings debug msg

This commit is contained in:
Ricardo Amaro 2020-03-19 15:30:24 +00:00 committed by Stanisław Barzowski
parent 3a245f70d4
commit 6f135f75bc

View File

@ -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
}