Skip to content
Snippets Groups Projects
Commit be363925 authored by Amna Snene's avatar Amna Snene Committed by Adrien Béraud
Browse files

dnc: respect SIPLOGLEVEL

Change-Id: Iaaee0ed079c8f5d181776a08b8865c9e637d3f29
parent a9ef2a5e
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,9 @@ setSipLogLevel()
}
pj_log_set_level(level);
pj_log_set_log_func([](int level, const char* data, int /*len*/) {});
pj_log_set_log_func([](int level, const char* data, int len) {
fmt::print("{}", std::string_view(data, len));
});
}
int
......
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