From 7274b6d19ce2411bfcf17cc69498f7a80d335987 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Fri, 11 Jan 2019 06:53:34 +1100 Subject: [PATCH] Args messages to debug --- binding_method.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binding_method.go b/binding_method.go index 30ada36d8..a8245eee3 100644 --- a/binding_method.go +++ b/binding_method.go @@ -136,8 +136,8 @@ func (b *boundMethod) 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.method.Call(args) b.log.Debugf("results = %+v", results)