Commit d04c26e4 authored by Stefan Spettel's avatar Stefan Spettel

fix(smf): Removed confusing empty FTEID output

Signed-off-by: default avatarStefan Spettel <stefan.spettel@eurecom.fr>
parent 54daba95
......@@ -400,6 +400,9 @@ std::string smf_pdu_session::toString() const {
if (!is_released) {
s.append("\tSEID:\t\t\t").append(std::to_string(seid)).append("\n");
}
/*
// TODO as FTEID is not updated here, it is confusing to have null output
We need a complete QoS handling refactor
if (default_qfi.qfi) {
s.append("\tDefault ");
for (auto it : qos_flows) {
......@@ -407,7 +410,9 @@ std::string smf_pdu_session::toString() const {
s.append(it.second.toString());
}
}
}
*/
if (policy_ptr) {
s.append("\t Policy Decision:").append("\n");
......
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