diff --git a/libstuff/SLog.cpp b/libstuff/SLog.cpp index 98ef2d4ad..4e0fde495 100644 --- a/libstuff/SLog.cpp +++ b/libstuff/SLog.cpp @@ -57,6 +57,8 @@ static const set PARAMS_WHITELIST = { "policyAccountID", "policyID", "reportID", + "shouldCompleteOnboarding", + "shouldDismissHybridAppOnboarding", "token", "transactionID", "type", diff --git a/test/lib/BedrockTester.cpp b/test/lib/BedrockTester.cpp index 8f1e3ac05..53f0afc9e 100644 --- a/test/lib/BedrockTester.cpp +++ b/test/lib/BedrockTester.cpp @@ -576,7 +576,14 @@ bool BedrockTester::readDB(const string& query, SQResult& result, bool online) SData command("Query"); command["Query"] = fixedQuery; command["Format"] = "JSON"; - auto row0 = SParseJSONObject(executeWaitMultipleData({command})[0].content)["rows"]; + auto commandResult = executeWaitMultipleData({command}); + auto row0 = SParseJSONObject(commandResult[0].content)["rows"]; + auto headerString = SParseJSONObject(commandResult[0].content)["headers"]; + + list headers = SParseJSONArray(headerString); + for (const auto& h : headers) { + result.headers.push_back(h); + } list rows = SParseJSONArray(row0); for (const string& rowStr : rows) {