We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e844ec commit 86a0cafCopy full SHA for 86a0caf
compiler/compiler.go
@@ -11,7 +11,6 @@ import (
11
"sync"
12
"text/template"
13
14
- "github.com/davecgh/go-spew/spew"
15
"github.com/gen0cide/gscript/engine"
16
"github.com/gen0cide/gscript/logging"
17
"github.com/sirupsen/logrus"
@@ -154,7 +153,6 @@ func (c *Compiler) compileMacros() {
154
153
155
func (c *Compiler) writeScript() {
156
for _, vm := range c.VMs {
157
- c.Logger.Infof("Script Information: %s", spew.Sdump(vm))
158
if _, err := os.Stat(vm.ScriptFile); os.IsNotExist(err) {
159
c.Logger.Fatalf("Genesis Script does not exist: %s", vm.ScriptFile)
160
}
0 commit comments