Skip to content
Snippets Groups Projects
Commit cc7f191d authored by Josh Brooks's avatar Josh Brooks
Browse files

Fix print contact in cmd/

parent e03394e6
No related branches found
No related tags found
2 merge requests!510Release,!306Fix print contact in cmd/
package cmd package cmd
import ( import (
"fmt"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"gitlab.com/elixxir/client/e2e" "gitlab.com/elixxir/client/e2e"
"gitlab.com/elixxir/client/xxdk" "gitlab.com/elixxir/client/xxdk"
...@@ -128,6 +129,8 @@ func printContact(c contact.Contact) { ...@@ -128,6 +129,8 @@ func printContact(c contact.Contact) {
jww.DEBUG.Printf("Printing marshaled contact of size %d.", len(cBytes)) 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)) jww.INFO.Printf(string(cBytes))
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment