diff --git a/compiler/compiler.go b/compiler/compiler.go index dbdacc0..154790c 100644 --- a/compiler/compiler.go +++ b/compiler/compiler.go @@ -11,7 +11,6 @@ import ( "sync" "text/template" - "github.com/davecgh/go-spew/spew" "github.com/gen0cide/gscript/engine" "github.com/gen0cide/gscript/logging" "github.com/sirupsen/logrus" @@ -154,7 +153,6 @@ func (c *Compiler) compileMacros() { func (c *Compiler) writeScript() { for _, vm := range c.VMs { - c.Logger.Infof("Script Information: %s", spew.Sdump(vm)) if _, err := os.Stat(vm.ScriptFile); os.IsNotExist(err) { c.Logger.Fatalf("Genesis Script does not exist: %s", vm.ScriptFile) }