Skip to content
Snippets Groups Projects
Commit dd47c76c authored by Stefan Spettel's avatar Stefan Spettel
Browse files

refact(pcf): Use SD fix from common-src

parent 568e0bd9
No related branches found
No related tags found
1 merge request!46Resynch utils and common from common-src and use new FlowDirection fix
Pipeline #45801 passed
Subproject commit 9f9dc51748fbb1f2c6d52e340bada54a7c4d7e2d
Subproject commit ce3819f54bc32f6af35b1e63b59cc8622961f2d1
......@@ -52,6 +52,10 @@ class Logger {
name, SYSTEM, log_stdout, log_rot_file);
}
static bool should_log(spdlog::level::level_enum level) {
return oai::logger::logger_registry::should_log(level);
}
static void set_level(spdlog::level::level_enum level) {
oai::logger::logger_registry::set_level(level);
}
......
......@@ -374,7 +374,7 @@ void pcf_profile::display() const {
Logger::pcf_app().debug(" SNSSAI:");
}
for (auto s : snssais) {
Logger::pcf_app().debug(" SST, SD: %d, %d", s.sst, s.sd);
Logger::pcf_app().debug(s.to_model_snssai().to_string(4));
}
// IPv4 Addresses
......
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