From af1a1a249882d73bfdae2879d121a9ddaacf8ca2 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Tue, 3 Sep 2019 19:36:21 +1000 Subject: [PATCH] chore: remove debug output --- lib/binding/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binding/manager.go b/lib/binding/manager.go index 0b1c9b081..1c10b5686 100644 --- a/lib/binding/manager.go +++ b/lib/binding/manager.go @@ -195,7 +195,7 @@ func (b *Manager) processFunctionCall(callData *messages.CallData) (interface{}, return nil, errorResult.Interface().(error) } } - fmt.Printf("result = '%+v'\n", result) + // fmt.Printf("result = '%+v'\n", result) if len(result) > 0 { return result[0].Interface(), nil }