From 451b017c9c841021f4027f165bfa8436b21a970d Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Fri, 19 Jul 2019 14:04:43 -0700 Subject: [PATCH] client now prints out the ndf on start --- api/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/client.go b/api/client.go index 0a770a216..a42699301 100644 --- a/api/client.go +++ b/api/client.go @@ -106,6 +106,7 @@ func VerifyNDF(ndfString, ndfPub string) *ndf.NetworkDefinition { // is created // returns a new Client object, and an error if it fails func NewClient(s globals.Storage, loc string, ndfJSON *ndf.NetworkDefinition) (*Client, error) { + globals.Log.INFO.Printf("NDF: %+v\n", ndfJSON) var store globals.Storage if s == nil { globals.Log.INFO.Printf("No storage provided," + -- GitLab