Commit b51129ca authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Add debug log

parent 0880e5dd
......@@ -1559,6 +1559,14 @@ void udr_app::handle_query_sm_data(const std::string &ue_id,
nlohmann::json::parse(row[i]).get_to(dnnconfigurations);
sessionmanagementsubscriptiondata.setDnnConfigurations(
dnnconfigurations);
Logger::udr_server().debug("DNN configurations (row %d): %s", i,
row[i]);
for (auto d : dnnconfigurations) {
nlohmann::json temp = {};
to_json(temp, d.second);
Logger::udr_server().debug("DNN configurations: %s",
temp.dump().c_str());
}
} else if (!strcmp("internalGroupIds", field->name) && row[i] != NULL) {
std ::vector<std ::string> internalgroupIds;
nlohmann::json::parse(row[i]).get_to(internalgroupIds);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment