Update vue template to use BoxString

Made arg marshalling messages Debug rather than Info
This commit is contained in:
Lea Anthony
2019-01-11 06:39:42 +11:00
parent 7c15b780e2
commit 5c96264234
2 changed files with 4 additions and 4 deletions

View File

@@ -134,8 +134,8 @@ func (b *boundFunction) call(data string) ([]reflect.Value, error) {
}
args[index] = value
}
b.log.Infof("Unmarshalled Args: %+v\n", jsArgs)
b.log.Infof("Converted Args: %+v\n", args)
b.log.Debugf("Unmarshalled Args: %+v\n", jsArgs)
b.log.Debugf("Converted Args: %+v\n", args)
results := b.function.Call(args)
b.log.Debugf("results = %+v", results)