diff --git a/Transceiver52M/osmo-trx.cpp b/Transceiver52M/osmo-trx.cpp index 2eb8309d..1b351d6f 100644 --- a/Transceiver52M/osmo-trx.cpp +++ b/Transceiver52M/osmo-trx.cpp @@ -506,7 +506,7 @@ int main(int argc, char *argv[]) convolve_init(); convert_init(); - osmo_init_logging(&log_info); + osmo_init_logging2(tall_trx_ctx, &log_info); osmo_stats_init(tall_trx_ctx); vty_init(&g_vty_info); ctrl_vty_init(tall_trx_ctx); diff --git a/tests/CommonLibs/LogTest.cpp b/tests/CommonLibs/LogTest.cpp index b8677e6a..5167a627 100644 --- a/tests/CommonLibs/LogTest.cpp +++ b/tests/CommonLibs/LogTest.cpp @@ -29,6 +29,8 @@ #include "Logger.h" extern "C" { +#include +#include #include #include #include "debug.h" @@ -50,7 +52,10 @@ int main(int argc, char *argv[]) linfo.cat = categories; linfo.num_cat = ARRAY_SIZE(categories); - osmo_init_logging(&linfo); + void *tall_ctx = talloc_named_const(NULL, 1, "OsmoTRX context"); + msgb_talloc_ctx_init(tall_ctx, 0); + + osmo_init_logging2(tall_ctx, &linfo); log_set_use_color(osmo_stderr_target, 0); log_set_print_filename(osmo_stderr_target, 0);