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

Add more debug prints

parent d95a80ff
No related branches found
No related tags found
2 merge requests!510Release,!395Add debug for multilookup bindings bug
This commit is part of merge request !395. Comments created here will be created in the context of that merge request.
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment