From fcde7708f49b7910925df793f5a73bcb2d2439d5 Mon Sep 17 00:00:00 2001 From: joshemb <josh@elixxir.io> Date: Thu, 22 Sep 2022 12:07:41 -0700 Subject: [PATCH] Add more debug prints --- bindings/ud.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bindings/ud.go b/bindings/ud.go index 737e30d81..3381d0734 100644 --- a/bindings/ud.go +++ b/bindings/ud.go @@ -478,6 +478,8 @@ func MultiLookupUD(e2eID int, udContact []byte, cb UdMultiLookupCallback, return err } + jww.INFO.Printf("MULTILOOKUP DEBUG idList: %s", lookupIds) + var idList []*id.ID err = json.Unmarshal(lookupIds, &idList) if err != nil { @@ -485,7 +487,8 @@ func MultiLookupUD(e2eID int, udContact []byte, cb UdMultiLookupCallback, } mar, _ := json.Marshal(idList) - jww.INFO.Printf("MULTILOOKUP DEBUG idList: %s", mar) + jww.INFO.Printf("MULTILOOKUP DEBUG idList: %s\n"+ + "idList %s\n", mar, idList) var p single.RequestParams err = json.Unmarshal(singleRequestParamsJSON, &p) -- GitLab