From cc7f191d49014bea38a5d5f4a86bec25dd3e7286 Mon Sep 17 00:00:00 2001 From: joshemb <josh@elixxir.io> Date: Tue, 2 Aug 2022 12:02:12 -0700 Subject: [PATCH] Fix print contact in cmd/ --- cmd/utils.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/utils.go b/cmd/utils.go index 74ee3a8f5..80c9471f4 100644 --- a/cmd/utils.go +++ b/cmd/utils.go @@ -1,6 +1,7 @@ package cmd import ( + "fmt" "github.com/spf13/cobra" "gitlab.com/elixxir/client/e2e" "gitlab.com/elixxir/client/xxdk" @@ -128,6 +129,8 @@ func printContact(c contact.Contact) { jww.DEBUG.Printf("Printing marshaled contact of size %d.", len(cBytes)) } + // Do not remove fmt.Print, it's for integration + fmt.Print(string(cBytes)) jww.INFO.Printf(string(cBytes)) } -- GitLab